Archive for Computing

Welp.co.uk Consultancy to be launched

In my short time working in IS and IT I have learnt a multitude of skills and sins; Habbits and Harassments. Good lessons and ones I would rather never have benefited from! You know the ones I mean!

I am happy to announce that I am working on a very-much lucrative consultation firm that should be providing the very greatest expectations of a modern IS customer. From small basement software development firms to Large multinational multi-million corporate framework, Server Management and Internet Service Provision.

It’s nice to finally be on the way to working on yet another type of ISP. There are a number of people involved and there will be an extremely *broad* range of services once it is launched. I’m delighted with the website we have chosen, Welp.co.uk servers. I have valued this domain at approx £10k but it is probably worth significantly more than that.

Wish me luck readers! This is the `business` and we will all be going for it!! A big thanks to the kind people that have helped me get where I have over the years. A lot of you are businesses I have worked with, providers, agents & of course loyal customers, friends and mentors! Thankyou. I’d never have got this far without you, and I won’t be the sort of guy to forget that.

Comments

“Expression is pointless in an anonymous society”

And today we are taking an even less grammatically correct alternative direction, thanks to my good friend Mike. In a jestful converse about the importance of expression in the online community - the surprising importance of expression - for me - the blog has helped me more than it has my visitors. To me, that was surprising, I am actually one of those people who always saw blogs as “vanity blogs”.

Seriously though, what a great statement “Expression is pointless in an anonymous society”. I am actually quite sad that I did not come up with such a bold statement myself. This is one for the quote books! goddamn! Not because it is factually correct of course, but because there is a very real source of my friends inspiration in saying what he did. It (ironically) tells us more about Mike’s expression than him starting a blog.. and I think Mike will find that interesting, when it occurs to him. Actually he’s a smart guy, he probably has worked it out already.

I went on to tell my friend was so right, in that - expression was meant to be pointless in a society that was meant to be anonymous.

I established with my learned colleague that the idea of MAC and IP addresses, router tables, and log files was to , very much so, keep track of users online. I went on to express how over 99% of the population is IN FACT not anonymous and a proprotion of that 99% is not even aware of it.

I feel that the internet was meant to be anonymous, but ended up being abused, and often followed by intrinsically open systems - a closing occurs, of major proportion. Something I like to call the atypical and expected over-reaction compensation - in an attempt to “re-align/re-balance” the anonymous system that fails due to something specific like “anonymous fraud” can only result in a flip-flop like reaction of concern and intimidation. Usually, as with most matters those who suffer from the lack of an anonymous system are more likely to be in the majority , than not, and even more likely to be innocent of any targeted crime.

It’s important to note that in recent surveys a totally shocking number of people admit to or have broken the law in some way online. To me, thats actually not shocking… anonymous systems become abused, and eventualy become un-anonymous - much like - secure systems can only become less secure over time, fact. As is the cycle of most items.

<< Well, this post actually raises more questions than answers. However, if its teh truth your looking for, unfortunately - the best way is the hard way. Understanding is paramount. Understanding can only be achieved through question and observation.  >>

Comments

Using KVM or kqemu to speed up qemu ( Virtualizing server operating systems)

Have you ever wanted to play with a new distro without having to burn and then reboot into a liveCD or do an install into a spare partition that you may or may not have? QEMU has been an option for awhile but it is slow. There are several options available to run up a virtual machine, i.e. a second operating system running inside and seperate from your already running operating system. Here we will be focusing on kqemu and kvm.

If your kernel is already 2.6.20 or higher you can run kvm, if not then you will have to use kqemu.

kvm is in sid/unstable so you will have to add that to your apt sources if you’re using someting different.

Become root and edit your sources list:

nano /etc/apt/sources.list

add this:

deb http://ftp.debian.org/debian unstable

Now update by running :

apt-get update
aptitude install kvm

After kvm and associated packages are installed it would be best to edit your sources.list again and comment out the line where you added in unstable with a “#” character at the beginning of the line.

kqemu, which is technically a qemu accelerator instead of kernel level virtualization, like kvm, is available in Debian stable and therefor as easy to install as:

aptitude install kqemu

You should have noticed if it wasn’t already installed that qemu was installed regardless of whether you went with kvm or kqemu. Thats because both packages use qemu. So no worries, we need the qemu tools anyway.

If you installed kqemu then we need to load that module when we boot. Become root again and then run:

echo kqemu >> /etc/modules

For kvm you need to know something whether you have an Intel or an AMD processor. You’ll need to load a processor-specific module to take advantage of the system.

If you have an Intel processor you will need to load kvm-intel, for AMD processors you’ll need to load kvm-amd. The module can again be added to /etc/modules.

Now that we have the modules ready to load, we need to make them accessible to you as a user.

adduser $USER kvm
adduser $USER kqemu

(Only one of thse commands needs to be run; it depends which program you installed.)

Congratulations, right now you should have everything just about ready to go. The problem is, even if you modprobe the modules active right now they still wont be usable to you, they need to be loaded against the kernel when you boot, so bookmark this page and reboot your computer, I’ll wait here while you do.

OK so now we need to create a virtual drive to install our test distro to. I’ll explain the parts of it after. From here on out everything is applicable to QEMU, Kqemu, and KVM. It is done as a normal user, so no more need to be root.

qemu-img create debian.img -f qcow 5G

The first bit is self explanatory, create an image (virtual drive) named debian.img. The next bit “-f qcow” tells it to format it in an inflatable structure. The 5G means a maximum physical size of 5 gig real hard drive space. The nice thing about this format is, if your VM installed only takes up 2.5 gig, then the virtual drive only takes up 2.5 gig of space on your real hard drive.

I guess the next thing that you’ll be wanting to do is actually spin this up and try it out. I should note that I have had problems on occasion with KVM locking up during the install process, if this should happen to you drop back and use qemu with the same command line arguments. If you are using kqemu instead of kvm use qemu in the command line instead of kvm, kqemu is a module called by qemu when it starts. I’ll be using kvm for the command line, you use what works for you.

I’m not ready yet to tell you how to start. A few things first if you don’t mind. I usually make a seperate directory for my VM’s because there are usually one or two files other than just the .img file. Such as an overlay file or two, which I will cover shortly and a script that simplifies launching the VM after its made. There are tons of command line arguments that can be added to the basic ones I am using here to get you started, the script is a huge time saver.

There are two basic ways to start this off, either with an .iso image or a CD/DVD. Lets start with an .iso image, the debian net-inst image in this case. We will assume for the sake of argument that the .iso is in the same folder as the virtual drive that you created is, and that it is also our working directory.

kvm -cdrom net-inst.iso -hda debian.img -m 512 -boot d

First this calls kvm and tells it that the .iso image is actually a CD-drive, then the “-hda debian.img” is its hard drive. The “-m 512″ tells it that its a computer with 512 meg of memory. Careful here because this is the amount of physical memory that its going to block out for itself. Rule of thumb is no more than 1/2 of your actual physical memory. The final bit is -boot d, it tells it to boot from the cdrom drive.

kvm -cdrom /dev/cdrom -hda debian.img -m 512 -boot d

The only difference here is that you’re pointing it to your real cd drive here. If /dev/cdrom doesn’t work for you then you can “cat /etc/fstab” and look there to see what you cdrom drive really is.

Now I mentioned that you might have problems doing an install using kvm, if this happens you have to explicitly tell qemu to not use the kvm module in the command line like this:

qemu -no-kvm -cdrom /dev/cdrom -hda debian.img -m 512 -boot d

Lets move on with the thought that you have installed your new virtual operating system. You’re going to want to get in and play with it. The command for this is simply:

kvm -hda debian.img -m 512

With that you will be up and running in your new OS running inside your existing. However there is another trick that is really handy that will let you do whatever you want without permanently breaking this new creation, overlay files. Which basically takes a snapshot of your virtual drive and then run it from the overlay instead of the virtual drive. Really handy if you want to have several versions accessible but only have to do the install process once. Say like having a version of stable a version of testing and a version of unstable all available from the same install. To do this its as simple as:

qemu-img create -b debian.img -f qcow stable.ovl

To boot into this you just change the command line a little bit and tell it to use the overlay file you just made.

kvm -hda stable.ovl -m 512

As you can see the easy way to run multiple versions off the same install would be to do a base install of stable and then make your overlay file for it. Next you would make an overlay file named something like testing.ovl and another for unstable.ovl all from the debian.img that we made to start.

Then simply fire each up in turn via the overlay files, edit your /etc/sources.list to what ever you want and update yourself into debian nirvana.

My thanks to Scott Ruecker over at lxer.com for asking the question that started the process for this how-to. As I said though there are tons of switches that will add functionality to your virtual machine. More than I can adequately explain as I haven’t managed to figure them all out yet either. This how to was written with the whole intent to get someone armed and dangerous before kicking them out the door and isn’t intended to be all inclusive.

For more information on this topic you can start at the qemu homepage.+

Original Source of Article: Debian-Administration

Comments

Intercepting Files with tcpdump

It’s actually possible to intercept files on a network, unencrypted ones at the very least. However it is likely you will also be able to retrieve the encrypted information also, and given you have access to the cipher type or the authorisation key for the encryption you will be able to gain access to it.

This is a handy tool for any responsible admin, and of course the tool of choice for the hacker. It’s the network admins job to watch out for odd files & identify them, as much as it is the crackers/hackers choice to seruptiously wait for a *given* type of information, intercept it, log it and access it.

It’s as simple as

tcpdump -i eth1 -s0 -w rawdump host picard

Packets of course will often arrive to the interface out of order, or duplicated. Also there’s the problem of packets from one file transfer arriving inter-mixed with packets from another data transfer. Many other problems also exist to make files harder to find, so I use tcpflow to order the data.

tcpflow -r ../rawdump

You can use tcpflow to break the data down into each flow file and extract data from it, use find to accomplish this without

find ./ -exec cat ‘{}’ \; > dump

Now that everything is nicely ordered together, just run foremost and wait for it to extract the data. I could have just run foremost on the rawdump file, but that would result in incomplete and corrupted data.

Any suggestions or improvements are welcome!

Wouldn’t it be nice to make a nice little shell script out of this? Oh the joys…

Original Article Source: http://www.debian-administration.org
Many thanks for thomasl of debian-administration for this article!

Comments

Azio

Hello all! I am azio, for those who don’t know me already I am a 23 year old consultant, developer, technician and have been enjoying the computer generation since the 8086 AT and some will (quite correctly) correct me, the proper term is 8206 AT and it was this model to be the very first IBM compatible personal computer to be made and available in a commercial format.

Since Norton Commander and monochrome gempaint Desktop Publishing apps; much for me, has changed. Specifically the internet, networking, Linux and specifically webservers, kernels, and computer game servers. I have been involved in the online entertainment (gaming) industry for about 3 years now. I have gone from running my own single rig or two to maintaining a fully functional CISCO network comprising over multiple racks. Again, much has changed for me. I think there is still a long way to go in my career. Azio.org is my personal site, where I express my personal feelings, todays rant (or even yesterdays!) and a place for the disgusting and the geeky.

Since my entry into the online entertainment business I have been responsible for the general maintenance of the Game-Zero Network, machines (specs/builds/OS/maintenance) aswell as the development of the game-zero website, sales and billing system. A lot of work, but we are *really* getting there. I am happy with a lot of my achievements. Getting to work with top gaming organisations such as Zboard, Counter Strike Armageddon, The Last Resort (TLR), infused-gaming, Team Cooler-Master, The French (and most loyal) Team Supremz, dTekt, EdgeGaming, Auxilia, TradeMark Gamers, and many many other well known UK teams. It really has been a pleasure and I hope to take away my experiences and ideas from working in this industry and take certain interesting and otherwise surprising results & lessons I have learnt towards a consulting career.

My first skill was music and I have been playing for almost 20 years now.. (Since I was 6). I consider it my passion, love & joy, and I would almost certainly be doing it now if other prospects weren’t so close. I write all my own music ( can’t sight read because of a rare eye condition + dyslexia), can compose at and beyond concert level (hell, I wish any competant music could find work!! really I do!!) and can write music “as I go along”. If only coding was that easy, unfortunately I have not been coding or scripting that long!

I hope that you enjoy reading my blog and that I might be able to share with you something special. It’s what I’m looking for day and night, inspiration - something special. Thanks for reading,

I’d like to thank my thousands of visitors for dropping by, regular, new or otherwise :) Thanks for popping over, you have reached a geek-esque blog, with a lot of very strange, cunning & disgusting ideas.

Yours Faithfully,
Azio
azio.org owner

Comments

Proxy List Octoboer 23rd 2007

218.196.195.209: 8080 anonymous server Oct-23, 08:56 China
201.231.138.176: 8080 anonymous server Oct-23, 08:54 Argentina
75.82.138.0: 3128 anonymous proxy server Oct-23, 07:30 United States
159.145.15.101: 80 anonymous server Oct-23, 08:55 United States
75.82.219.104: 3128 anonymous server Oct-23, 07:30 United States
75.82.204.246: 3128 anonymous server Oct-23, 07:32 United States
207.59.107.175: 443 anonymous proxy server Oct-23, 09:00 United States
210.75.12.100: 8080 anonymous proxy server Oct-23, 07:01 China
148.235.82.70: 80 anonymous server Oct-23, 08:20 Mexico
209.59.121.122: 8080 anonymous proxy server Oct-23, 08:20 Virgin
200.31.42.3: 80 high-anonymous proxy server Oct-23, 08:33 Chile
59.42.250.145: 808 high-anonymous server Oct-23, 08:05 China
207.6.24.188: 80 high-anonymous proxy server Oct-23, 07:56 Canada
220.53.44.50: 80 high-anonymous proxy server Oct-23, 08:42 Japan
209.87.243.254: 8080 high-anonymous proxy server Oct-23, 08:15 Canada
82.127.81.10: 8000 high-anonymous proxy server Oct-23, 08:01 France
192.17.239.251: 8888 high-anonymous proxy server Oct-23, 08:01 United
129.12.3.75: 3124 high-anonymous server Oct-23, 05:48 United Kingdom
58.247.2.108: 8080 high-anonymous proxy server Oct-23, 06:43 China
61.128.110.110: 32931 high-anonymous proxy server Oct-23, 06:36 China
200.226.134.53: 80 high-anonymous proxy server Oct-23, 08:47 Brazil
216.114.194.19: 6588 high-anonymous server Oct-22, 22:01 United States
208.110.73.34: 8383 high-anonymous proxy server Oct-22, 22:06 United
24.98.114.117: 2301 high-anonymous proxy server Oct-22, 22:40 United
202.164.175.186: 8080 high-anonymous server Oct-22, 22:33 Philippines
80.237.140.233: 3382 high-anonymous server Oct-22, 22:21 Germany
210.0.140.96: 80 high-anonymous proxy server Oct-23, 06:10 Hong Kong
201.12.175.164: 6884 high-anonymous server Oct-22, 23:17 Brazil
201.213.143.127: 8000 high-anonymous server Oct-22, 20:36 Argentina
63.123.19.34: 80 high-anonymous proxy server Oct-22, 20:43 United
80.175.38.190: 8889 high-anonymous server Oct-22, 20:16 United Kingdom
190.8.194.30: 3128 high-anonymous proxy server Oct-22, 21:00 Colombia
67.19.139.2: 8989 high-anonymous server Oct-23, 06:17 United States
61.128.110.110: 28244 high-anonymous proxy server Oct-23, 04:20 China
70.241.114.42: 6077 high-anonymous server Oct-22, 20:22 United States
193.174.67.186: 3127 high-anonymous server Oct-23, 05:27 Germany
129.24.211.26: 3128 high-anonymous server Oct-23, 05:55 United States
143.205.172.12: 3128 high-anonymous server Oct-23, 06:00 Austria
128.112.139.97: 3128 high-anonymous proxy server Oct-23, 06:54 United
128.163.142.21: 8888 high-anonymous server Oct-22, 21:09 United States
156.56.250.227: 3128 high-anonymous proxy server Oct-23, 03:59 United
195.116.60.34: 3128 high-anonymous server Oct-23, 06:55 Poland
206.117.37.5: 3127 high-anonymous server Oct-23, 06:55 United States
130.245.145.154: 3127 high-anonymous proxy server Oct-23, 05:27 United
130.149.49.26: 3128 high-anonymous proxy server Oct-23, 05:31 Germany
195.113.161.83: 3128 high-anonymous proxy server Oct-23, 03:59 Czech
152.3.138.2: 3124 high-anonymous proxy server Oct-22, 21:30 United
169.229.50.14: 3124 high-anonymous server Oct-22, 20:00 United States
206.12.16.133: 3124 high-anonymous server Oct-23, 08:14 Canada
195.130.121.204: 3127 high-anonymous proxy server Oct-22, 14:20 Greece
200.171.37.142: 6588 high-anonymous proxy server Oct-22, 16:38 Brazil
129.82.12.188: 8888 high-anonymous server Oct-22, 20:22 United States
201.17.10.187: 6588 high-anonymous proxy server Oct-22, 20:21 Brazil
61.166.68.74: 80 high-anonymous server Oct-23, 05:25 China
129.242.19.196: 3128 high-anonymous server Oct-22, 16:08 Norway
128.193.33.8: 3128 high-anonymous server Oct-23, 03:59 United States
140.114.79.231: 3127 high-anonymous server Oct-23, 05:27 Taiwan
129.240.67.15: 3124 high-anonymous proxy server Oct-22, 13:41 Norway
143.205.172.12: 3124 high-anonymous proxy server Oct-22, 14:21 Austria
132.239.17.226: 3128 high-anonymous proxy server Oct-22, 23:17 United
141.24.33.162: 3128 high-anonymous server Oct-23, 06:55 Germany
141.76.45.17: 3124 high-anonymous server Oct-23, 05:48 Germany
128.31.1.11: 3124 high-anonymous server Oct-22, 17:37 United States
140.247.60.123: 3128 high-anonymous server Oct-23, 03:59 United States
203.178.133.3: 3124 high-anonymous proxy server Oct-23, 05:30 Japan
143.205.172.11: 3128 high-anonymous server Oct-23, 05:29 Austria
128.112.139.82: 3128 high-anonymous proxy server Oct-23, 03:59 United
203.178.133.10: 3128 high-anonymous server Oct-22, 23:28 Japan
128.114.63.14: 3124 high-anonymous proxy server Oct-22, 20:45 United
140.114.79.231: 3128 high-anonymous server Oct-23, 04:57 Taiwan
141.24.249.129: 3124 high-anonymous proxy server Oct-22, 23:00 Germany
192.41.135.218: 3128 high-anonymous proxy server Oct-23, 03:59
129.174.79.248: 3127 high-anonymous server Oct-22, 14:04 United States
128.10.19.52: 3128 high-anonymous proxy server Oct-23, 07:24 United
195.116.60.1: 3127 high-anonymous server Oct-23, 06:55 Poland
195.116.60.49: 3124 high-anonymous proxy server Oct-23, 00:10 Poland
128.193.33.7: 3124 high-anonymous proxy server Oct-22, 17:36 United
192.33.90.66: 3124 high-anonymous server Oct-23, 00:10 Switzerland
192.33.90.66: 3128 high-anonymous proxy server Oct-22, 16:07
129.174.79.248: 3124 high-anonymous server Oct-22, 14:04 United States
158.130.6.253: 3127 high-anonymous server Oct-22, 16:07 United States
192.33.90.67: 3128 high-anonymous server Oct-23, 03:59 Switzerland
140.114.79.231: 3124 high-anonymous proxy server Oct-23, 04:58 Taiwan
128.151.65.101: 3127 high-anonymous proxy server Oct-23, 06:54 United
130.37.198.243: 3128 high-anonymous server Oct-23, 06:55 Netherlands
216.165.109.79: 3127 high-anonymous server Oct-22, 14:03 United States
133.1.74.163: 3124 high-anonymous server Oct-22, 23:28 Japan
128.151.65.102: 3127 high-anonymous proxy server Oct-20, 22:04 United
128.151.65.101: 3124 high-anonymous proxy server Oct-22, 16:08 United
128.151.65.102: 3128 high-anonymous proxy server Oct-23, 08:10 United
133.1.74.163: 3128 high-anonymous proxy server Oct-22, 23:28 Japan
129.105.44.253: 3128 high-anonymous server Oct-23, 03:59 United States
216.165.109.81: 3124 high-anonymous proxy server Oct-20, 22:12 United
169.229.50.14: 3127 high-anonymous server Oct-22, 20:00 United States
150.165.15.18: 3127 high-anonymous server Oct-22, 20:17 Brazil
203.178.133.2: 3124 high-anonymous proxy server Oct-22, 23:28 Japan
192.33.90.67: 3127 high-anonymous server Oct-22, 13:41 Switzerland
150.65.32.66: 3127 high-anonymous proxy server Oct-22, 23:28 Japan
129.105.44.252: 3128 high-anonymous proxy server Oct-21, 00:05 United
155.98.35.3: 3128 high-anonymous server Oct-22, 16:08 United States
128.31.1.16: 3128 high-anonymous server Oct-23, 03:59 United States
169.229.50.4: 3128 Planetlab/CoDeeN proxy server Oct-23, 06:55 United
136.145.115.196: 3128 Planetlab/CoDeeN server Oct-20, 12:32 Puerto
143.225.229.236: 3128 Planetlab/CoDeeN server Oct-22, 16:07 Italy
198.163.152.229: 3128 Planetlab/CoDeeN proxy server Oct-23, 07:55
155.98.35.3: 3124 Planetlab/CoDeeN server Oct-23, 06:55 United States
155.98.35.4: 3124 Planetlab/CoDeeN server Oct-22, 23:16 United States
129.186.205.76: 3124 Planetlab/CoDeeN server Oct-21, 18:53 United
129.105.44.252: 3124 Planetlab/CoDeeN proxy server Oct-21, 00:05
150.165.15.18: 3124 Planetlab/CoDeeN server Oct-22, 22:38 Brazil
129.240.67.18: 3128 Planetlab/CoDeeN server Oct-20, 12:31 Norway
129.12.3.74: 3127 Planetlab/CoDeeN proxy server Oct-22, 16:07 United

Comments (1)

Online Fakers Alert

Well, to a few of your experiened online people - this’ll seem like common practice. To a vast majority of you this’ll seem like the usual thing you see on the news of a 70 yr old man falling in love with a 20yr old etc. etc. It’s all about lies and deceipt and darnright ignorance on everyones behalf - but what can you do? It’s the internet right?

Well, actually theres lots you can do to tell if someone is lying to you. I myself have been online for a long time, and much like there is something in britain called the “policemans nose” there is something called the “geeks nose” - we just know when something isn’t quite right. It could be their typing, their level of intellect, their mannerism’s, their domain name, email.. there are so many clues guys.

As people are getting smarter and more experienced with computers, tools and online streetsmartedness its everyones job to be more vigilant now.

I’m on a popular webmasters forum that I will not name - there is an “edrama” there every few days/weeks/month’s because of some moron pretending to be someone who he isn’t. That is, someone pretending to be working for a top500 website in the world (an adult entertainment site might I add). People should know firstly, this is commonplace and it’s likely a few of you have already been cleaned out by people like this. A lot of the webmasters refer to these people as “cheaters”. You can spot a cheat, there’s lots of signs, trust me. The cheaters should know that the adult entertainment industry is somewhat mafia run and fucking with these sort of people is not a smart idea.

It’s interesting to see that it still continues and a lot of sad, moronic people mess up their chances of becoming a decent webmaster with some decent contacts by simply, lying out of their bum bum! It’s a shame as these people might actually be a useful addition to the webmaster workforce, however in retrospect, i’m glad these guys get caught and punished in the way that they do - I’d rather not be in business with cheaters or affiliated with, in any way. So in some respects I/we should stop moaning as the signs are there, and we can be easily protected from these sorts of peoples.

We all need to be more vigilant in our online activities, even professionals. Cheating seems to be at an all time high - and as more and more people join the internet, the average IQ online is sure to drop.

If your a cheater and are reading this, why not consider doing yourself a favour and choosing something a bit more long term, a lot less stressful and if none of the above - get yourself some morals you fucking unscrupilous bastard!
haha.

Peace,
A

Comments

using ssh on multiple servers at one time

The possibilities for this app are endless. Yum.

Lots of us have many server to manage and we perform the same tasks on each of the machine every day, if you want to save time the package cssh will make you happy!

Simply install the clusterssh package:

host:/# apt-get install clusterssh

Now if you want to perform the same command on the three servers one, two, & three simply run:

host:/# cssh one two three

This will open three console, one for each server, over an ssh connection, and one little console to type your command.

Enjoy !
Source of article: Debian-Administration.org

Comments (1)

I re-launch Game-Zero Radio for Game-Zero LTD

Hello readers! Fancy listening to some music? Knock yerself out! Tune in here
 or visit their site here http://radio.game-zero.com/

Banging Trance, Dance, Rock and ecclectic - something for everyone!!

A

Comments

Proxy List Octoboer 9th 2007

60.190.228.93: 80 anonymous server Oct-05, 02:25 China
202.115.130.23: 8080 anonymous server Oct-05, 02:24 China
69.77.171.34: 80 anonymous proxy server Oct-04, 22:47 Canada
61.60.74.118: 80 anonymous server Oct-04, 20:35 Taiwan
84.244.169.201: 80 anonymous proxy server Oct-04, 20:36 Netherlands
87.106.143.157: 80 anonymous server Oct-04, 20:06 Germany
125.108.222.42: 8080 anonymous proxy server Oct-04, 20:05 China
217.23.181.10: 8080 anonymous server Oct-04, 22:45 Russian Federation
84.172.132.104: 3128 anonymous proxy server Oct-04, 22:40 Germany
212.244.78.146: 8080 anonymous proxy server Oct-04, 22:52 Poland
216.239.69.229: 8888 anonymous server Oct-05, 03:41 Canada
81.0.235.121: 80 anonymous proxy server Oct-04, 20:08 Czech Republic
217.169.44.38: 88 anonymous proxy server Oct-04, 22:49 United Kingdom
195.77.254.25: 8080 anonymous proxy server Oct-05, 00:53 Spain
83.143.83.94: 80 anonymous proxy server Oct-04, 23:37 Norway
209.59.121.122: 8080 anonymous proxy server Oct-04, 23:18 Virgin
193.251.181.135: 8080 anonymous server Oct-04, 22:51 France
210.75.12.100: 8080 anonymous proxy server Oct-04, 21:42 China
213.74.119.141: 80 anonymous server Oct-05, 03:38 Turkey
213.55.78.106: 8080 anonymous server Oct-04, 22:49 Ethiopia
66.249.2.51: 80 anonymous server Oct-05, 02:55 United States
209.200.118.6: 8081 anonymous server Oct-05, 03:23 United States
61.89.28.28: 8080 high-anonymous proxy server Oct-05, 03:46 Japan
220.59.252.239: 8080 high-anonymous proxy server Oct-05, 03:49 Japan
69.243.144.80: 5624 high-anonymous server Oct-05, 03:08 United States
209.240.41.124: 8080 high-anonymous server Oct-05, 03:06 Bermuda
129.242.19.196: 3128 high-anonymous server Oct-05, 02:49 Norway
81.189.106.138: 8080 high-anonymous server Oct-04, 22:42 Austria
217.110.185.6: 80 high-anonymous server Oct-04, 20:09 United Kingdom
202.155.100.96: 80 high-anonymous proxy server Oct-04, 20:10 Indonesia
209.200.38.171: 80 high-anonymous server Oct-05, 02:49 United States
203.186.92.119: 808 high-anonymous proxy server Oct-05, 03:32 Hong
208.45.137.232: 80 high-anonymous server Oct-05, 03:13 United States
200.204.148.36: 6588 high-anonymous server Oct-04, 18:48 Brazil
172.179.116.29: 7212 high-anonymous proxy server Oct-03, 19:49 United
202.158.165.82: 80 high-anonymous proxy server Oct-04, 21:10 China
213.203.143.2: 3128 high-anonymous server Oct-03, 18:42 Italy
121.134.55.213: 8080 high-anonymous proxy server Oct-04, 12:18 Korea,
150.165.15.19: 3124 high-anonymous server Oct-03, 20:08 Brazil
17.149.160.53: 80 high-anonymous server Oct-04, 16:11 United States
209.200.38.170: 80 high-anonymous proxy server Oct-05, 03:00 United
128.163.142.21: 8888 high-anonymous proxy server Oct-04, 17:39 United
194.9.85.141: 80 high-anonymous server Oct-05, 03:27 Netherlands
201.59.56.115: 6588 high-anonymous server Oct-03, 22:03 Brazil
82.178.87.237: 80 high-anonymous proxy server Oct-03, 23:12 Oman
200.21.244.142: 80 high-anonymous proxy server Oct-04, 12:33 Colombia
201.232.4.3: 8080 high-anonymous server Oct-05, 02:41 Colombia
165.91.83.22: 3127 high-anonymous server Oct-04, 22:52 United States
144.216.2.53: 3128 high-anonymous server Oct-04, 22:52 United States
59.165.5.233: 6588 high-anonymous server Oct-04, 13:31 India
201.0.175.100: 6588 high-anonymous proxy server Oct-04, 13:33 Brazil
202.164.175.186: 8080 high-anonymous server Oct-04, 14:43 Philippines
200.36.179.163: 8080 high-anonymous proxy server Oct-04, 07:32 Mexico
210.192.124.166: 8080 high-anonymous proxy server Oct-05, 02:36 China
220.156.3.62: 8080 high-anonymous proxy server Oct-05, 01:34 Japan
219.240.36.173: 4480 high-anonymous server Oct-04, 23:10 Korea,
86.109.163.26: 80 high-anonymous proxy server Oct-05, 02:25 Spain
61.166.49.150: 8118 high-anonymous proxy server Oct-04, 23:53 China
209.136.113.98: 8088 high-anonymous server Oct-05, 03:04 United States
80.237.140.233: 8001 high-anonymous server Oct-05, 01:00 Germany
218.94.30.171: 3128 high-anonymous proxy server Oct-05, 00:41 China
61.156.42.123: 6317 high-anonymous proxy server Oct-04, 22:44 China
202.101.189.126: 8080 high-anonymous server Oct-04, 21:32 China
222.86.132.20: 808 high-anonymous server Oct-04, 22:08 China
80.237.140.233: 6588 high-anonymous proxy server Oct-04, 22:09 Germany
61.175.139.6: 808 high-anonymous proxy server Oct-04, 22:45 China
80.237.140.233: 444 high-anonymous server Oct-04, 22:26 Germany
220.22.144.36: 8080 high-anonymous server Oct-05, 03:53 Japan
222.221.6.144: 808 high-anonymous server Oct-05, 03:41 China
221.52.219.48: 8080 high-anonymous proxy server Oct-05, 04:01 Japan
221.35.27.53: 8080 high-anonymous proxy server Oct-05, 03:02 Japan
209.200.38.174: 80 high-anonymous server Oct-05, 03:03 United States
128.112.139.97: 3124 high-anonymous server Oct-04, 16:05 United States
193.167.182.130: 3124 high-anonymous proxy server Oct-03, 06:24
140.247.60.123: 3127 high-anonymous proxy server Oct-05, 03:41 United
128.31.1.17: 3128 high-anonymous server Oct-05, 03:41 United States
193.167.182.132: 3124 high-anonymous server Oct-03, 20:18 Finland
200.132.0.70: 3124 high-anonymous server Oct-05, 03:45 Brazil
129.108.202.10: 3127 high-anonymous proxy server Oct-05, 03:41 United
198.163.152.230: 3124 high-anonymous server Oct-05, 00:47 Canada
129.93.68.55: 3124 high-anonymous server Oct-05, 03:41 United States
195.116.60.1: 3124 high-anonymous proxy server Oct-04, 16:06 Poland
129.174.79.248: 3128 high-anonymous server Oct-03, 20:00 United States
130.245.145.153: 3128 high-anonymous proxy server Oct-05, 03:41 United
128.119.247.211: 3128 high-anonymous server Oct-05, 02:49 United
192.41.135.218: 3128 high-anonymous server Oct-03, 20:16 Switzerland
128.135.11.152: 3128 high-anonymous proxy server Oct-05, 03:41 United
192.33.90.66: 3124 high-anonymous proxy server Oct-04, 16:07
169.229.50.4: 3124 high-anonymous server Oct-03, 17:21 United States
158.130.6.253: 3127 high-anonymous server Oct-04, 16:07 United States
128.59.20.228: 3128 high-anonymous proxy server Oct-03, 19:21 United
169.229.50.8: 3124 high-anonymous server Oct-03, 17:21 United States
128.10.19.52: 3128 high-anonymous server Oct-05, 02:49 United States
141.24.249.130: 3128 high-anonymous proxy server Oct-03, 20:05 Germany
192.38.109.144: 3124 high-anonymous server Oct-05, 02:49 Denmark
131.188.44.100: 3128 high-anonymous server Oct-04, 16:07 Germany
193.196.39.9: 3124 high-anonymous proxy server Oct-03, 21:12 Germany
141.76.45.18: 3127 high-anonymous server Oct-03, 20:06 Germany
210.125.84.16: 3127 high-anonymous proxy server Oct-04, 13:42 Korea,
128.151.65.101: 3127 high-anonymous server Oct-05, 03:41 United States
128.151.65.101: 3128 high-anonymous proxy server Oct-05, 02:49 United
61.166.68.74: 80 high-anonymous proxy server Oct-04, 22:58 China
192.197.121.3: 3128 high-anonymous proxy server Oct-02, 16:31 Canada
80.237.140.233: 3128 high-anonymous proxy server Oct-02, 16:12 Germany
129.137.253.253: 3128 high-anonymous server Oct-05, 02:49 United

Comments (1)

« Previous entries · Next entries »