WEB-NES-BAY

Learn Tips and tricks on Linux, Hacking, linux, PHP, Perl, Web, Hardware

bookmark bookmark

Archive for July, 2009

Posted by WEBNESBAY Comments Off

Downloading youtube videos is very easy without any software. Here is the procedure below
Step 1: Find the video you want to download and wait for it to completely finish loading.
Step 2: Minimize your browser (do NOT close it, some browsers delete the temp directory upon closing), and navigate to the directory /tmp
Step 3: Drag the flash file onto your desktop. Voila!
This procedure works with almost every browser. I have tried it in firefox and worked
Also, here is the shell script [...]

Categories: Linux
Posted by WEBNESBAY Comments Off

It is quite common at present in different attacks on our servers, and although not necessarily attacks, is always curious to know who (whom) are connected to our Linux server, it is therefore, to disclose how.
The netstat command provides information about reliable connections to our team penguin, and by the following command tells you what you need to know.
The command is:
netstat netstat
-anp |grep ‘tcp\|udp’ | awk ‘{print $5}’ | cut -d: -f1 | sort | uniq -c | sort –n [...]

Categories: Hacking
Posted by WEBNESBAY Comments Off

Implementing an AJAX feed data to a PHP script, and usually by sending data via GET, it had not experienced major problems, however this time the number of bytes far exceed the limited capacity of the GET. Before proceeding further, to clarify this point that we have reference …
Do limit the number of characters that can be passed by GET ($ _GET)?
In mid-1998 was published the HTTP protocol specification, a fairly complete, but inaccurate in [...]

Categories: PHP
Posted by WEBNESBAY Comments Off

Defenders Network is an online game where you got that CISCO protect your network from all types of attacks all using Cisco products.
CISCO got a full part in this already for some time been listening, online game for beginners and to advance knowledge. The idea is to learn to play, and until there is a game that lets you get your CCNA that is the case for mind share, but that has a cost.
Youth games success like Peter Packet [...]

Categories: Internet tools
Posted by WEBNESBAY Comments Off

When I write a decorator with a parameter error I found that not even understand. Not only that writing was bad, but was using the wrong. A designer with a parameter and applies (being a designer deco and the argument 1):
@deco(1)
def function_a_decorar(a, b, c):
pass
I think the root of my confusion was the syntactic sugar (yes, the @). So let’s see how to remove it and use this designer in [...]

Categories: Python
Posted by WEBNESBAY Comments Off

Big email account providers, like GMail, Yahoo, MSN started providing huge amount of disk space for emails. There is no reason why not to automate your Linux/Unix backup and send backups to your email account. Like this, you do not need to worry about media for storing your emails, you can be sure that you won’t lost them.
Due the limitation of email size, you cannot expect to do backup of huge amount of data. But it can be useful for [...]

Categories: Internet tools, Linux