Cum verificam parole de mail usor de spart din ispconfig3
Cum verificam parole de mail usor de spart din ispconfig3 ?
mysql -u root -p dbispconfig
Rulam odată autentificați (merge cu parola de root de la mysql):
mysql> SELECT email,password FROM dbispconfig.mail_user INTO OUTFILE ‘/tmp/sql.txt’ FIELDS TERMINATED BY ‘:’ ESCAPED BY ‘\\’ ENCLOSED BY ” LINES TERMINATED BY ‘\r\n’;
mysql> quit
acum este creat un fișier /tmp/sql.txt care conține userii de mail de pe server și parolele criptate
Instalam programul de analiza:
apt-get -y install john
și acum vom încerca să “spargem parolele de mail:
john -single /tmp/sql.txt
va afișa parolele sparte. dacă vrem mai târziu sa revedem, rulam:
john –show /tmp/sql.txt
nu uitați la sfârșit sa ștergeți:
rm -rf /tmp/sql.txt
Dacă vrem automatizare, facem asa:
vim /home/mailpassscript
și introducem:
SELECT email,password FROM dbispconfig.mail_user INTO OUTFILE '/tmp/sql.txt' FIELDS TERMINATED BY ':' ESCAPED BY '\\' ENCLOSED BY '' LINES TERMINATED BY '\r\n';
acum cream scriptul care va face totul zilnic:
vim /home/mailpasstest
rm -rf /tmp/sql.txt cat /dev/null > /home/backupscripts/mailpasshack mysql -uroot -pPAROLADEROOTMYSQL dbispconfig < /home/mailpassscript echo "`date +%F` = `cat /tmp/sql.txt |wc -l` conturi de mail" >> /home/mailpasslog cat /home/mailpasslog > /home/mailpasshack john -single /tmp/sql.txt john --show /tmp/sql.txt >> /home/mailpasshack mail -s "verificare parole mail, `date +%F`" adresademail@domeniu.ro < /home/mailpasshack -c adresaalternativademail@domeniu.ro
în exemplu se trimite mailul la 2 adrese de mail.. dacă se dorește doar la una, se șterge ce este după -c
și se introduce în cron sa ruleze zilnic la ora 5:30
crontab -e
30 5 * * * /home/mailpasstest
Ultimele știri ispconfig:
- These 5 free add-ons make Minecraft Bedrock Edition feel brand new
- Tracing network packets with eBPF and pwru
- Vampire Crab: More Cartoonish Than Blood-sucking
- The Most Expensive Gas in the U.S. Is on the West Coast
- Get free money towards the latest Xbox games with this gift card deal — Last call, it ends soon!
- WWE 2K25 gets its steep MSRP chokeslammed with a 43% discount — now with previously unseen Bray Wyatt content!
- I've loved using this wireless gaming headset since the day I reviewed it — I can't believe it's almost $100 off for Amazon Prime Day
- I decided to change which sites appear first in Google Search — and it works on Chrome, Edge, or Firefox
- YouTube ramps up campaign against AI slop — with stricter monetization caveats on inauthentic and repetitive videos
- These are my 5 favorite ways to optimize my Windows 11 PC for gaming — Here's how I tweak my settings for extra performance
Leave a Reply
Want to join the discussion?Feel free to contribute!