UNDERCODE COMMUNITY
2.68K subscribers
1.23K photos
31 videos
2.65K files
80.1K links
πŸ¦‘ Undercode Cyber World!
@UndercodeCommunity


1️⃣ World first platform which Collect & Analyzes every New hacking method.
+ AI Pratice
@Undercode_Testing

2️⃣ Cyber & Tech NEWS:
@Undercode_News

3️⃣ CVE @Daily_CVE

✨ Web & Services:
β†’ Undercode.help
Download Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
πŸ¦‘ APASH CONFIG & SECURITY TUTORIAL BY UNDERCODE
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ Apache Server's httpd.conf file commentsThe reference here is the Apache Server.._win32 version- OLD STABLE VERSION
twitter.com/undercodeNews

πŸ¦‘π•ƒπ”Όπ•‹' π•Š π•Šπ•‹π”Έβ„π•‹ :


1) ServerType standalone #Set whether the
server is started separately (standalone) or through the internet server inetd. The former is generally used.

2) ServerRoot "d: / Apache" #Set the
server's Home directory to store the server's configuration files, error files, and log files.

PidFile logs / httpd.pid #When the
program starts, store the process ID of the parent process httpd in this file. This file name can be changed with the PidFile command.

3) ScoreBoardFile logs / apache_status #Set
the log files of some execution programs of the WWW server on the network.

#ResourceConfig conf / srm.conf
#AccessConfig conf / access.conf #The
contents of these two files are already included in the httpd.conf file.

Timeout 300 #If the
client has not been connected for 300 seconds, or the server has not transmitted data to the client for 300 seconds, it will automatically disconnect.

KeepAlive On #Set
whether to support the resume function.

MaxKeepAliveRequests 100 #Set
the number of resume transmission functions. The larger the number, the more wasted hard disk space. Set to 0 for more than continuous transmission.

KeepAliveTimeout 15 #If
the user has not sent a request to the server after 15 seconds, he cannot resume the transmission.

MaxRequestsPerChild 0
#Set the number of child processes at the same time.

ThreadsPerChild 50 #Set
the number of processes used by the server.

#Listen 3000
#Listen 12.34.56.78:80 #Allow the
use of other ports or IPs to access the server. In this example, the Port is 3000 and the IP is 12.34.56.78:80.

#BindAddress * #Set
Apache to listen to all IPs, which can also be specified specifically.

#LoadModule anon_auth_module modules / ApacheModuleAuthAnon.dll
...... #Open
the module that is not currently activated for reservation.

#ExtendedStatus On #Set
the status information generated by the server.


The reference here is the Apache Server1_3_12_win32 version.

Port 80 #Set the port
used by the server.

ServerAdmin you@your.address #Set
the E-Mail address of the server administrator.

#ServerName new.host.name
#Host name of the server. If you have a fixed IP address, you do not need to set it.

DocumentRoot "d: / Apache / htdocs" #Set
the directory for storing site html files.

<Directory />
Options FollowSymLinks
AllowOverride None
</ Directory>
# Setup / Directory instructions. Specifically:
Option: defines the operations that can be performed in the directory. None means you can only browse, FollowSymLinks allows the page to connect to other places, ExecCGI allows you to perform CGI, MultiViews allows operations such as watching animation or listening to music, Indexes allows the server to return a formatted list of directories, and Includes allows the use of SSI. These settings can be checked. All can do anything, but does not include MultiViews.
AllowOverride: Add None parameter to indicate that anyone can browse the files in this directory. Other parameters are: FileInfo, AuthConfig, Limit.

UserDir "d: / Apache / users /"
#Define the directory where users store html files.

DirectoryIndex index.html #Define
the file to be displayed first.

AccessFileName .htaccess #Define
the name of each directory access control file.

#CacheNegotiatedDocs
Define that the proxy server should not cache your pages. Not recommended for use.

UseCanonicalName On #The
server uses the server name specified by ServerName and the port address specified by Port.

written by undercoders

▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ One way to solve the increasing expansion of the Apache log file ACCESS.LOG:

Change the CustomLog logs / access.log common in httpd.conf to CustomLog "| c: / apache / bin / rotatelogs c: /apache/logs/%Y_%m_%d.access.log 86400 480" common

restart Apache

where c : / apache / is

▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ Traditional proxy, transparent proxy, plug-gw, Apache reverse proxy, IP disguiseThe first part of the characteristics of various proxy methods and package rewriting process
t.me/undercodeTesting



1) Squid traditional proxy and transparent proxy: The

most widely used traditional proxy and transparent proxy on Linux is Squid. The default Squid is configured as a traditional proxy.
In this way, the windows client has to set the proxy server address and port number in the browser, and the client has
very little work to do . You only need to specify the IP address and port number of the proxy server, and everything else is left to the proxy server
to do. An obvious feature in this way is that when a Windows client browses a webpage and enters a URL, the DNS is also done by the proxy
server.

2) The DNS resolution process is based on the resolution order in the /etc/host.conf file set in the Linux server.
The general order is to find / etc / hosts first, then find the DNS database bind. An interesting example in this case is that if you set the
domain name of a site as a server in your intranet, then go to the intranet server first. If you set
192.168.11.3 www.yahoo.com, it is impossible for your browser to access the yahoo site on the Internet.

3) But if you set up a transparent proxy, the DNS order of resolution will become
windowshosts and then the DNS database of Linux. It is no longer possible to check the / etc / hosts file on the Linux server.


written by undercode
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
This media is not supported in your browser
VIEW IN TELEGRAM
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ The package rewriting process of traditional proxy and transparent proxy: see the following situation
> t.me/undercodeTesting

[PC] A [Linux squid server] B
192.168.11.12_ | _____ 192.168.11.5 | ___ 1.2.3.4 _________ Internet

πŸ¦‘situation 1

Set the proxy to 192.168.11.5 and the port number to 3128 on the browser of the user of machine A, and use B to access the Internet.
If you visit www.linuxforum.net, in fact, as long as you set up a proxy, the user's browser only
communicates with the Linux Squid server and never talks to the www.linuxforum.net server on the Internet. The Squid proxy server first
www.linuxforum.net for parsing (find the parsing sequence in /etc/host.conf, first / etc / hosts and then DNS lookup)
to the IP address 202.106.124.185, and finally the proxy server replaces the IP address for the client For HTTP access, the returned
information is first cached in the Squid cache, and a copy is also copied to the client. If the user or another user visits the same page next time,
it can be saved from the Squid cache.
The process of transparent proxy is similar to traditional proxy, the difference is
1. The DNS resolution process is different, as already mentioned
2. The transparent proxy gateway must be set to the IP address of the Squid proxy server, which is not required for traditional proxy.
3. The transparent proxy needs to set the input rules of the fire chain. The
rest is the same as the traditional proxy method of Squid.

plug-gw:
plug-gw is a general agent program included in FWTK. Can be used to proxy application layer services like POP3, HTTP, etc.

[PC] A [Linux POP3] C [Linux plug-gw] B
192.168.11.12_ | ______ | 192.168.11.1 ____ 192.168.11.5 | ___ 1.2.3.4__Internet

πŸ¦‘situation 2

If there is a Linux on the internal network segment POP3 server C (192.168.11.1), the user can wish to receive an external message
may be set in the plug-gw POP3 proxy machine B as follows:

place the following line to /etc/rc.d/rc.local
/ usr / local / etc / plug-gw -daemon 1.2.3.4:110 -name plug-gw-pop3 &
file / usr / local / etc / netperm-table has the following line
plug-gw-pop3: port 110 * -plug-to 192.168. 11.1 -port 110

, the user sets the POP3 server address in outlook express to 1.2.3.4. When receiving mail, the external
interface of the B machine is to accept the user request on the 110 port of 1.2.3.4, and then it is plug-gw Processing, on the internal network segment,
192.168.11.5 sends a request to port 110 of 192.168.11.1. Copy the obtained data to
external users through the 1.2.3.4 interface .

Apache reverse proxy.
The package rewriting process is similar to plug-gw.

Note: In the above three cases, the request process is divided twice, and the middle is usually the Squid proxy server or
Plug-gw, Apache server, the data is copied between the two network cards of the server, but
the source address of the two request processes is a randomly assigned high-end address, which is different. Between 1024 and 65535. But generally speaking,
the random high-end addresses allocated by TCP / IP are mostly allocated between 1024-5000. For example: For plug-gw:
If the IP address of an external dial-up user is 5.6.7.8. If the address and port are as follows: the
source address and port number and the destination address port
sum are: 5.6.7.8 1038 1.2.3.4 110
rewritten by plug-gw request:
192.168.11.5 1045 192.168.11.1 110

The data returned by 192.168.11.1 is Copy to external customers.

However, not all the randomly assigned addresses on the high end of the source are between 1024 and 5000. IP masquerading is the exception:

IP masquerading:

[PC] A [Linux MASQ server] B
192.168.11.12_ | _____ 192.168.11.5 | ___ 1.2.3.4 _________ Internet

πŸ¦‘ situation 3

As shown above, PC A is going to surf the Internet through B masquerade. If you want to visit www.linuxforum.net, the package rewriting process in disguise is as follows:
source address / port number and destination address / port number are:
192.168.11.12 1047 202.106.124.185 80
The
source address and port number and The target address / port number is:
1.2.3.4 62334 202.106.124.185 80 The

returned packet is
202.106.124.185 80-1.2.3.4 62334
and then rewritten to PC A as:
202.106.124.185 80-192.168.11.12 1047

Generally speaking, the IP masquerade The source address is usually> 60,000 and is between 61000--64999.
A comparison table of IP disguise is maintained on the firewall. You can see with the command / sbin / ipchains -M -L -n
:
[root @ proxy etc] # / sbin / ipchains -M -L -n
IP masquerading entries
prot expire source destination ports
UDP 02: 18.86 192.168.11.12 205.188 .179.41 1215 (62615)-> 4000
TCP 17: 03.20 192.168.11.12 205.188.248.57 1049 (62584)-> 80

From the ports column you can compare the matching of two source addresses.

Port forwarding (port forwarding):
See another article in the blend article, "port forwarding by the internal network of external network services,"

written by undercode
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
This media is not supported in your browser
VIEW IN TELEGRAM
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘the second part of the application of ways and the advantages and disadvantages of various agents of
the role of various agents of ways:


1. IP Disguised, Squid's traditional proxy and transparent proxy are suitable for users with no real IP address on the LAN to access the Internet.

2. Apache reverse proxy, plug-gw general proxy, port forwarding is suitable for external users to access
the server without real IP address in the LAN .

πŸ¦‘ The advantages and disadvantages of various proxy methods:
1. The advantage of Squid is that it requires few clients, as long as it can connect to the Squid server.
However, it is necessary to set the proxy server IP address and port number for each machine.
The advantage of Squid transparent proxy is that it does not require each client to set the proxy address and port, simplifying the client
configuration. However, the default gateway of each client needs to be set to the Squid proxy server, and the client needs to do
DNS resolution
. 3. IP masquerading can be suitable for most application layer services, unlike Squid which only supports http and ftp. But also requires the client ’s The default
gateway is set to the address of the firewall. And unlike Squid has a cache function
4. plug-gw can proxy various servers like HTTP, POP3, etc. But Apache reverse proxy can only proxy http reverse request
5. Port forwarding is suitable for most services. It has nothing to do with the specific application. It is fast and implemented at the core IP layer without requiring special

application layer services to run. But it may be necessary to recompile the kernel.

written by undercode
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
This media is not supported in your browser
VIEW IN TELEGRAM
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘Verified Scribd Premium Accounts :

tamiko_tauka95@yahoo.com:luvmiko4e
luis_alvarezf@hotmail.com:lea121262
moy.cnc@gmail.com:M01535is
lukasr_nqn@hotmail.com:lukasr89
yslee92001@gmail.com:2ljuljou
lucas.wong18@gmail.com:jermaine18
escipion84@gmail.com:pincha06
johnathanemanuel1993@gmail.com:Jj47554755
olivathio@yahoo.co.id:230605
saul.lino.sil@gmail.com:980623As
toriol64@gmail.com:tato6446
catslack@gmail.com:minesweeper

▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
This media is not supported in your browser
VIEW IN TELEGRAM
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘How to recover MYSQL ROOT password :
instagram.com/undercodeTesting


If you have forgotten your MYSQL root password, you can recover it through the following procedure.

1) Send a kill command to mysqld server to turn off mysqld server (not kill -9). The file storing the process ID is usually in the directory where the MYSQL database is located.
kill cat / mysql-data-directory / hostname.pid
You must be the root user of UNIX or the equivalent user on the server you are running to perform this operation.

2) Use the '--skip-grant-tables' parameter to start mysqld.

3) Use the 'mysql -h hostname mysql' command to log in to the mysqld server and change the password with the grant command. You can also do this: 'mysqladmin -h hostname -u user password' new password ''.
(In fact, you can also use use mysql; update user set password = password ('yourpass') where user =' root '.)

4) Load the permission table: `mysqladmin -h hostname flush-privileges', or use SQL Command `FLUSH PRIVILEGES '. (Of course, here, you can also restart mysqld.)

written by undercode
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
This media is not supported in your browser
VIEW IN TELEGRAM
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘How to import ACCESS data into Mysql by undercode :
t.me/undercodeTesting

In the process of building a website, it is often necessary to deal with the import and export of some data. In the Mysql database, there are two ways to deal with the export of data (general).
1) INTO table_name from outfile * SELECT "file_name";

2) Use mysqldump utility
Let us illustrate:

πŸ¦‘ Suppose that we have a database of library samp_db, a table samp_table. Now we need to export the data of samp_table. Then we can use the following method to achieve:
Enter select * from samp_table into outfile "file_name" at the Mysql prompt;
enter mysqldump -u root samp_db samp_table> samp.sql at the system command prompt
(Of course mysqldump has many options .For example, -d means only export table structure; -t means only import table data)


πŸ¦‘ How to deal with data import: Generally we enter mysqlimport –u root samp_db samp_table.txt at the system command prompt (note: this TXT file name Must be named after the table). For the data exported by mysqldump, we can also use mysql –u root samp_db <file_name to import. At the Mysql prompt, we use Load data infile β€œfile_name” into table samp_table.


> In addition to the above methods, under the premise that the database system after the move is the same as the original system, we can import and export data by copying files. First we use mysqladmin -u root variables (at the system command prompt) or show variables; (at the Mysql prompt) to find the datadir. As in my environment, this directory is in c: mysqldata.

> Then copy some of the files. Everything is ok!
With the above knowledge, we enter the topic: how to import ACCESS data into Mysql.

First, we export the data from ACCESS to a text file. In the export process, pay attention to choose the field separator and text identifier, and check the text file to determine whether a record is on the same line. If not, manually delete the Enter key. If the text file we export is c : samp_table.txt. Which reads as follows:

1) Zhang Xinhua, M

2) Jiang advanced, women as exmaple ...
Next we mysqlimport -u root -fields-terminated-by = "," samp_db samp_table.txt
or use load data infile "c: \ samp_table.txt " into table samp_table fields terminated by ",";
try it (note the escape character), is everything ok! If it still doesn't work, please take a closer look at the help of specific commands. Some options are listed below:
--fields-enclosed-by = char indicates that the column value should be included in the specified character. Usually use quotation marks. By default, it is assumed that the column value is not included in any characters.
--fields-escaped-by = char represents the escape character used to escape special characters. By default, it means no escape character
--fields-terminated-by = char specifies the character that separates the columns. By default, column values are assumed to be separated by tabs.
--lines-terminated-by = str Specifies the end of the input line string (can be multi-character). By default, the line is assumed to be terminated by a newline

written by undercode
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
▁ β–‚ β–„ ο½•π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ PREM ACCOUNTS :
> after nord and express good to use StrongVPN Premium Accounts :


sorkdkrak@gmail.com:dmstjr0527
ariannaverardi@hotmail.it:pumpkins92
roy@wh.iov.cn:51168van
nmalinov@yahoo.com:belisa851106
pedrocasaleiro@gmail.com:Pedro1985
alex3223223@gmail.com:rousanoglou1
qhu@wh.iov.cn:lcd51vm
rosstattoogame@gmail.com:19840917
All.txtmargrethemar@hotmail.com:hoiberget91
aythami.cuentas@gmail.com:funflero9
adam@graham.hk:513266
anthony.vitsentzatos@gmail.com:AeN21173
albmord@gmail.com:asdone123
helenehjelbak@hotmail.com:polly123
adware77@gmail.com:arceus12
elturco1860@gmail.com:garrido
matheusjack1602@gmail.com:wonderwall
All.txtMirandajonhatan@gmail.com:tarantula1912
anantgoel15@gmail.com:PavanKumar1
wildbillyinspace@gmail.com:6432377
wangdb@wh.iov.cn:4562109
maja.mariamk@gmail.com:gryzelda12
flores.lm23@gmail.com:aussie1992
luisamzea@gmail.com:2147101
senmuye@gmail.com:763683699
xuarronbe@yahoo.co.id:rubicon28
All.txtbannanenbrot6@gmail.com:vfendvvw1
h.wang@wh.iov.cn:wanglin
mohd916@gmail.com:04840484
rszp@wh.iov.cn:123456
gravepui109@hotmail.com:y5cy6924
marta.tamosiunaite@gmail.com:19991122mt
danielporsiempre1@hotmail.com:lovekof2400
tobias.eglin@gmx.ch:Imperator
thiagozur@gmail.com:robot1004
post@annettelarsen.com:wasabi01
cpenap@gmail.com:30960968
paulina.sulik@vp.pl:paulina0409
shaikhawahaibi@gmail.com:sheikha097
alex_montecinos93@hotmail.com:fullmetal
tanya.santos.carvalho99@gmail.com:cortinas99
aravaefrat@gmail.com:efrat8776
sychen@wh.iov.cn:LingXiao92
zhangsy@wh.iov.cn:Z87199116
mrgrolly@gmail.com:leanne
All.txtayoubma1@yahoo.fr:Bobleponge1
tomrob17@gmail.com:clounagh
activearmy89b@gmail.com:1007l1214
mimkader1993@gmail.com:216saidali09
l_sp20@hotmail.com:hectorteamo02
brigidodudu@gmail.com:Dudu3107
dnilom@gmail.com:DAnilo26
sebas9015@hotmail.com:oyus5g1m
drziegler11@gmail.com:David111
jade.guiitar@gmail.com:Virust18
artcases.ccs@gmail.com:chiguire
yessi.hdzz25@gmail.com:amorykises
pokmanlai@msn.com:Hou18v23
zlshi@wh.iov.cn:Zms528
akmw0705@gmail.com:Lolqmen12
justinpitts@gmail.com:alifeson1
niels1997@live.nl:michiel1
emina.hasagic.eh@gmail.com:eminahasagic
nemtombazd@gmail.com:Kc15b15c15K
bsaxkwt@gmail.com:123123Bader
dodmax@gmail.com:28356007
the-boy-alone@hotmail.com:karn2704
neosab@hotmail.com:imbecil666
cetin.altug97@gmail.com:Cetin1997
vapournz@gmail.com:j3ffr3y
crackyouri@gmail.com:Dirtnap4u
jasjin@hotmail.com:Jineva19
karine82@gmail.com:ka631982
tbtktb@gmail.com:Megamanx8
andreynaz@live.com:andrey14
michi911.mj@gmail.com:vivien69
fisyonet@gmail.com:64896489
odavid971@gmail.com:97170dav
damian.deile@gmail.com:maryann1
t_stgermain@hotmail.com:Tonystg11
lukasr_nqn@hotmail.com:lukasr89
schurd2002@yahoo.com:Delyreous1
greekpuma@gmail.com:GreekPuma07
maxmatheson1@outlook.com:Tennis900
tomtroncone@gmail.com:Pantera1
joyceanne@gmail.com:j0yceanne
73sharath73@gmail.com:9986448320
chriscuber@yahoo.com:NXTgen2012
jkbarber462@gmail.com:forty6n2
sandmangritz1@hotmail.com:mrgritz1
artsbybrooke@yahoo.com:urfantasy1
enis95@hotmail.fr:6h30lion
meghanmckinlay@gmail.com:Millyr22
bruno.acosta01@gmail.com:leak0730
alatawi900@gmail.com:Alatawi90
maddygm12@gmail.com:mooman101
rough_weasel@msn.com:potlid22
outmang@yahoo.com:gdjo1112
m.bagger.nielsen@gmail.com:agh45scx
stan.kalnitsky@gmail.com:Gabriel2008
perry2680@att.net:August26
sneha21201@gmail.com:sneha21201
tim.m.loden@gmail.com:P244w0rd
samigako@hotmail.fr:eloises1
madianne22@outlook.com:Roxybuster09
Slowgti@gmail.com:Slowgt05
godelle.nounours@hotmail.fr:bfwWITUL
bigwilsy@gmail.com:imflying123
sean-peck@hotmail.com:sp16ae78
archimondien@hotmail.fr:clement0
david.treve@gmail.com:bumbum79
hesham.badissy@gmail.com:Morocco1
alanmshen@gmail.com:Spf4k68y3h
prathapan@gmail.com:Sabara12
isaachernandez63@yahoo.com:Daniel12
rryan550@hotmail.com:ryan1119
brandyn_martin@yahoo.com:Gaiaisgay123
lkosmatine@yahoo.com:Justin11
1072802772@qq.com:Hy971012
miottit@gmail.com:tais2001
joshtobes@icloud.com:Assasin1291
annaveronique@hotmail.fr:pa64pillon
Than9ne@gmail.com:Lehiaz480
thovanic@gmail.com:sammy2002
ross.calvia@hotmail.com:Hearts1874
wininie8@hotmail.fr:sniper
parrisrumph@gmail.com:Denise18
tsam75@hotmail.fr:diamond75
gravikiran83@gmail.com:ravigna8387
brad.kiefer25@gmail.com:foxracing25
kachinax@usc.edu:kachina0306
duck8345@naver.com:tkfkdgo1
hsdoomgrill@gmail.com:doom6194
idontneednostinking@hotmail.com:jellyshot12
master54x@gmail.com:ppoo0099
karl.linderoth@hotmail.com:Hacker123
carrojose@yahoo.com:Kaneda2298
nickmathews243@gmail.com:Racecar13
ruggedsavior@gmail.com:bloody85
Aaronlozhkin@gmail.com:Aaron123
oli4_collet@hotmail.com:madras1234
gert_p@hotmail.com:gelyla09
andrew.gous@gmail.com:soCRAtes160
jterry87@gmail.com:Jacket14
benzialberto@gmail.com:cucciolone
samueleasterbrook@gmail.com:katherine69
bonurozdemir@gmail.com:17agustoS
christopherhines2017@gmail.com:Arizona1
pandas19@outlook.com:caso2931
fixedautism@gmail.com:charlie6179
Shirkc1@aol.com:Shimon7s
acrossingham@gmail.com:Cloverfields1
jalissaortega@gmail.com:Yulissa15
haidynf@gmail.com:Appletree1
bluerpk@gmail.com:blue0000ff
kcmcstix@gmail.com:Dboyblue02
paul.rudhart@gmx.de:d3007009
sabrinapineda88@gmail.com:Carlos66
ludovic.fussen@gmail.com:kuku1001
forevertoxxic@gmail.com:stargate5684
hunter0372@gmail.com:Ohio1234
michael.vallone@gmail.com:bucknell25
margotdollet@hotmail.fr:Converse59
nactue@hotmail.com:1111oo11
j.dave.zimmerman@gmail.com:Heather1
jacob.moore01@outlook.com:MICHIGANboy1199
danjshapiro@yahoo.com:Adin1023
dankarberg86@gmail.com:Sinnesro1
andrew12woodle@gmail.com:lizzard12
invader045@gmail.com:Skate12345
marpar187@yahoo.com:tool1877
lldds@aol.com:bailout1
cb112012@hotmail.com:Gutter11
garcia-j123@hotmail.com:april123
purpleduracell@gmail.com:Purple14
leahygroup@gmail.com:1mAw3s0m3
annetommy@yahoo.com:kerryblue69
drsemcs@yahoo.com:Seveball12
coheed1190@gmail.com:Steel1190
saul.lino.sil@gmail.com:980623As
louis.najem@gmail.com:Lounaj83
peresclyde@yahoo.com:mh02na4594
mcrepairs@sky.com:4thefish
Jalal.X@gmail.com:Kenshin13
CaptainCamper@GamersHeroes.Com:Gheroes271108
cheesy.dong@yahoo.com:weavel2947
issah@me.com:mouslim1
berjali@gmail.com:maryama2011
srw1412@hotmail.com:Siriwan5
th.kruck@gmail.com:Ndeswign8
dario.abramovic159@gmail.com:dario789
s.burrows@paintershall.ca:coffee66
gs1983@live.com.au:1eighty2
imaveryscaryghost@gmail.com:w4rr10rme
ppleasant@gmail.com:plea1978
mathilde.armani@hotmail.fr:matou59
JimmyReddell@yahoo.com:Cheron01
feeh_kirsa@icloud.com:89121466
ese.antonio.16@hotmail.com:tortarramo1
serranoati@gmail.com:6Scorpio6
patrick_b_rasmussen@msn.com:Hejmeddig123
azizaliii@hotmail.com:Blah1blah
john.bactol@gmail.com:johnmmb1
xvanishingpointx@gmail.com:jdredd12
ac1des@orange.fr:Se3yxRy4
hancej10@gmail.com:Venture2010
niklasanderssonhudik@hotmail.com:cde3kliQ
emelie.grundberg@hotmail.se:grundbergf611
lacknerniklas@hotmail.com:karlmarx1
DamirMesinovic@gmail.com:Damir888
corknutz69@hotmail.com:CORKDOG69
searscraig92@yahoo.com:buddog888
sousourym@hotmail.fr:rym2010
kjb2268@gmail.com:kjb2268atf
pazwhyte@gmail.com:Zas21345
brazzale@gmail.com:m8q7rwbr
stewasam@gmail.com:samgabe1
cmehta46@gmail.com:crazyme007
almurar@gmail.com:gzxix1a5
peturbjarnason@gmail.com:a1a1a1a2
killerburrito.aj@gmail.com:Awesome01
banckhd@gmail.com:panzer05
acdaniels2017@gmail.com:Reddog77
marelli_anthony@yahoo.com:Bubbles1
alecschoepf@gmail.com:a1l2e3c4
pauladderley@hotmail.com:Budlet123
laufeybjortjonsdottir@gmail.com:Melkorka44
przemek42@gmail.com:wisla2222
bayle.docsavage@gmail.com:pacman00
ojiver@hotmail.de:Martina0
phammartin@live.dk:michaelhaha1
thecheeseapache@hotmail.com:79264833pc
offesnabela@hotmail.com:christian0711
kepic79@yahoo.fr:floreval
xbones123@hotmail.com:nikolai55
rikk_t@hotmail.com:thunder65
michael.t.levy@gmail.com:coco1234
willeblomgren@hotmail.com:kalleanka12
nazrulmohtar@gmail.com:zqBmL4OX
kaulana.mccabe@gmail.com:market79
outersight@hotmail.com.au:Yourdead1
mmcyj1@aol.com:skippy12
oussy93@hotmail.fr:Nonos93500
aslan10000@gmail.com:superman10
maximusp2@yahoo.ca:Nick1234
majusfilms@gmail.com:Matthew1006
bceebill@bigpond.com:Wenatchee5036
livesey.gill@talktalk.net:vanston1402
ThaumicP@gmail.com:mansoor40
lockeye93@gmx.de:kingkong19
keaton2800@hotmail.co.uk:Rachel2800
alexis.poirat@laposte.net:RBHA8PSY
steven.a.hiller@gmail.com:demonking6
redgerton89@gmail.com:Jordan08
Jannes_tilma@hotmail.com:Voetbal213
ssehelk@hotmail.fr:Iabilis12
tom-krahmer@web.de:hammer11
anthonyamigon05@gmail.com:1Antysecas
matthieu.dejoue@gmail.com:moutt2k7
michaelfchim@yahoo.com:af012569
mitchworthington@hotmail.com:treacleno1
astroid3000@yahoo.com:funkychicken
marcphelps@hotmail.com:beatty42
jnbulldog@hotmail.com:bulldog28
mawbking007@gmail.com:4bryan28
kylef97@hotmail.co.uk:william22
francois.marette@gmail.com:rgghfvd6p
signalcs@bigpond.net.au:ashkat01
joe.noordam442@gmail.com:Huskers1
ericperry95@gmail.com:ebp957123
ordenmuslig@outlook.de:Ordeni31
caboose1691@hotmail.com:candygram77
craig@craigmaguire.net:Stygian01
bonchux@gmail.com:bon23456
pdaenen192@gmail.com:yinyang7
QuentonH234@gmail.com:Wordbla6
missmoneypenny66@hotmail.com:0508rabbit88
markavsh29@gmail.com:markess6
nisha.matto@hotmail.com:ginger13
fth@bluewin.ch:ghorghr
spmeater1@gmail.com:Murloc88
adrianrvaldivia@gmail.com:Offthewall1
fabianpardov@yahoo.es:fpv777
storickj19@gmail.com:Pib24680
pdace1@hotmail.com:pimpace01
cusickbsa@gmail.com:1qazxsw2
knutsonka@hotmail.com:UWEC6893
lindenjedwards@gmail.com:Movingup8
kiangjeff@gmail.com:c3044651
gales@centrum.cz:migina1982
zachhahn94@yahoo.com:mAster1337
lolly1966gm@libero.it:lolly1966
jdgrimbeek@vodamail.co.za:jdg27985
morrissam211@gmail.com:Dottie123
chris.pansing@gmail.com:bearcats00
jester83198@gmail.com:Defender1
john.edward.williams@gmail.com:schlieve
preiss.michael@gmail.com:michi1508
c.dohly@web.de:DaBobo2000
difranco.michael@gmail.com:Michael1
www.misiek3@wp.pl:korek23
dd_eagle1@hotmail.com:671987Rr
igimbernat2001@yahoo.es:cristi123456
panta.s@libero.it:gqmatte
donzels@iCloud.com:Daniel10
sawel.williams@yahoo.co.uk:Fudge2004
darenlpickens@gmail.com:Dallas41
mheinonen87@gmail.com:rs5gt427
dony.hw@worldonline.cz:qwerty13
miguelcasiano09@gmail.com:casiano09
michael.nufable@gmail.com:Bowling2259
mauspanu@hotmail.it:fefe92
bmattar@msn.com:kevin3214
kobia@hotmail.it:hellmut
gr.denis@libero.it:dmvddmvd
joshuajameswilliams@gmail.com:jjgwjjgw1
tony-o92@hotmail.it:totopinnalex
murrillmark@gmail.com:1at39jg4MTM
ksktoool@hotmail.com:15975338
lollodigiov@hotmail.it:lollo
meg@cavalrycontracting.com:Meg2278
dezzylanham@gmail.com:acft1tm1vb
awjackson7@gmail.com:awj192568
dozyo@hotmail.it:markino89
rocky-theleggend@hotmail.it:classico91
kim_eroh_work@yahoo.com:Bubbabug1
tsichlis@gmail.com:cryptic1
robineau.antoine@hotmail.fr:Antoine1984
johnny.myers@hotmail.com:Johnny99
tanyamanuel@sbcglobal.net:ww188049
bergeranthony1967@gmail.com:Gabriel0923
paolinok@hotmail.it:popo80
arthur@abaki.com:Hocmon00
magnus72it@yahoo.it:44magnum
riteshf24@yahoo.com:r8993958
woodwalker475@gmail.com:Spirit475
caterinesorros@aol.com:sacsrk1357
trainrider1997@bellsouth.net:Ytcoop5137
smelbyrocks@gmail.com:49Family
maxikangs@gmail.com:khamul33
stepecoraro@alice.it:lazzar0
john.clougherty@gmail.com:Clough1
j_aponte76@hotmail.com:Miguel1994
philtrash@hotmail.it:pantera
woodyweissert@gmail.com:Snoop1271
lenoxgjohnson@gmail.com:bo2thebo
tekkenchan@hotmail.it:katana
s.porter121160@gmail.com:Addiemae7
tehstigy@gmail.com:Strongman8907153
cryanb@gmail.com:17043crb
mauriceharley@aol.com:justmo34
sjemp@pt.lu:00ncm753
mastrojim@libero.it:kaiser
spork232ca@hotmail.com:Rjh232ca
dschamp83@yahoo.com:Spursfan1
cjwheeler7798@aol.com:N6020LLL
patricialynn94@yahoo.com:Keepoff94
devel@hotmail.it:smanolos
amor_vr46@hotmail.es:amor46
artbydana@gmail.com:guerrilla7
dantevitiello@gmail.com:Dantev333
andrea_mafeo@hotmail.it:diabolik
liam.clements@gmail.com:raider88
zitoooooooooooooman@hotmail.it:ciaosam
sarahmellin.sm@gmail.com:Olivia1722
stephaniekenyon@live.co.uk:reecey03
williamharvey66@gmail.com:Kernow4me
nylahdon11@yahoo.com:Aanyah03
doniekirrane@gmail.com:donalrules10
zackty93@gmail.com:woodpony7
motoxracer1234@yahoo.com:Tapout1379
chan.brian07@gmail.com:guitar99
mlightfo2@gmail.com:Brandon0788
wesowens1@gmail.com:Bigblue12
cenmat@live.it:Halo3odst
bill@d-ralls.com:Cayman2011
pier.riff@live.fr:admin55200
andrew5liu5@gmail.com:12characters
kris250673@onet.eu:krzysztof69
masoudi.malek@gmail.com:malek12646
mcconnellka@me.com:Barknight1
julio_rmz90@yahoo.com:julio12308
Loiclaroche75@gmail.com:Loic42300
stephanienicoleh94@gmail.com:Bubbles123
randysesariojr@gmail.com:ninja3221
www.cachito1124@hotmail.com:rudylopez2002
wappooo@hotmail.it:sabian85
westronical@gmail.com:pepsi410
nehmerabih@hotmail.com:03953538
shelleyk1111@yahoo.com:shelley0224
coljanspain@gmail.com:dodge666
tschue67@gmail.com:Dutchess715
tytheguy206@gmail.com:1122334455
danice06@gmail.com:Lena2013
cheyennemcgee55@gmail.com:soccer11
brandon.bisig@gmail.com:MiamiRH07
xmanq127@gmail.com:weaponx127
nikolasmaas@gmail.com:Trisou123
lookinsum1997@gmail.com:412497samloo
leiflicious@gmail.com:342akdsksl87
briandrake@netzero.com:S1badgoose
stapledpaper@live.com:Claytonwcar1
Zoeprincess33@aol.com:supergirl2
joshuahharvey95@gmail.com:Asshole01
lissyloveslucy@gmail.com:Broncos2
victorialrussell101@gmail.com:200801121
gianluca95p@libero.it:password
Jtvaio1@gmail.com:oliver09
n-miller@msn.com:Miles23710
hansiboy980@gmail.com:Hansmartin980
sassy8153@yahoo.com:sunset02
richmfive@gmail.com:dracir11
rachelmwiley@gmail.com:Scuffy28
mickedirgie@gmail.com:spiderman45
Saeyunc@gmail.com:saeyunc99
mercury1331@hotmail.com:IloveGuns133
cleofulghum@gmail.com:crf14958
dennisvet4@hotmail.com:Hansol123
jpedro2827@yahoo.com:LEO01bin
tregoez21@gmail.com:Brandname23
tasreenkeshavjee@yahoo.com:Nunkit68
daniela.lledes@yahoo.com:Dl0356275
chase.annie@gmail.com:Zoefart1
benji512512@gmail.com:Brady5126
christinalynn2@gmail.com:Yogiberra2010
delrosarioalyssam@gmail.com:Mockingbird
Brandi6038@msn.com:123195
siri.wallin@hotmail.de:bYT0zuA5
mauz18@hotmail.it:pestoalla1
Britt1234321@icloud.com:Brittany1211
daniel.dover1@hotmail.com:Danman5858
milan.king@zoznam.sk:marhuliaq
nessawatson22@gmail.com:twilight
sndergaardmads@gmail.com:cgy66quy
zalynmalab18@gmail.com:Tagupa12
cecelia.bragg@yahoo.com:howard77
jackiejsorensen@gmail.com:poopybutt
colekowalczyk@hotmail.com:Cole123456
taylormackenziesm@gmail.com:Dutchy910
Ceairadouglas18@gmail.com:cece3456
jenrebball@yahoo.com:hairball
kimmacaroni88@gmail.com:fuzzytoothpaste88
Riccardi.Dalexis@gmail.com:keepsecret911
hgopal68@gmail.com:haribol1
elijah.schmidt@gmail.com:Spunkbot9
michel.may@bluewin.ch:BleuBleu21
cheriemiller006@gmail.com:1racingnut
odile.bernard.soeur@neuf.fr:3367amorc
sarahilliard@sky.com:Liverpool3015
graphicbrad@gmail.com:brad4jen
thaneirwin@gmail.com:ph2f13d1
Kendall13lightner@gmail.com:Chloe100
borja-695@hotmail.es:lorena69
sd.murphy@live.com:kramer98
cameroncwatson81@gmail.com:Sailer81
arroyoestephany@yahoo.com:12isabella
hhherc232@gmail.com:Phalanx23
daysintheeast@icloud.com:boobies12
maleah1114@gmail.com:soccerstar
thomasbusteed@gmail.com:Forever1
sd_m@ymail.com:Blackwidow7
meganmclaren99@gmail.com:mm6702
Msjernikawilliams@gmail.com:jernika
pythonxz@gmail.com:rur6rdxv3r
sdb2323@hotmail.com:8989822
krihunt@gmail.com:fishylips
edwardjbonilla@gmail.com:sharpdesk3
bstowe08@gmail.com:Shontele08
i.am.jenna.l@gmail.com:jennanl8
miskia23@gmail.com:Kianni08
hollidaycraig@yahoo.com:meimcj11
Andyjakub29@gmail.com:Awesomejoe1
scyf@ymail.com:Tritons39
nadia_mitchell@hotmail.com:Landon2004
jamiemcpherson2404@hotmail.co.uk:Rangers24
sdame73033@aol.com:xavier
gonoles287@gmail.com:shadow22
brentdrummond22@gmail.com:drummond22
colejanofsky@gmail.com:maggie
davidkloth@yahoo.se:HammarbY97
diaz_gaby10@yahoo.com:leila123
nickthesuperstar91@hotmail.it:da058rp
sdereese@yahoo.com:dennis99
tanyakennedy99@gmail.com:p1an0f0rte
sdenirasmith@gmail.com:sdns7367
Cortneydb15@gmail.com:Jackson15
sdisaacs5192@yahoo.com:samuela21
vinesjada@gmail.com:janelle15
mcn707@gmail.com:streetglow21
sdavila21@live.com:forever16
sdavis79@cox.net:Trinity62
elatiara@gmail.com:roentgen
Josephmacmane@gmail.com:qazwsx12
sdhennen@frontiernet.net:Madyson4
sdonte01@yahoo.com:Jenesis21