Monday, July 23, 2012

Serie Rosa


Episodios:

Épisode 1 : La Libertina de calidad (Le Libertin de qualité)
Épisode 2 : La Apuesta de las tres cotillas (La Gageure des trois commères)
Épisode 3 : A la hoja de rosa, casa turca (À la feuille De Rose, Maison Turque)
Épisode 4 : El Alumno (L'Élève)
Épisode 5 : Una quinta en el campo (Une villa à la campagne)
Épisode 6 : Un tratamiento justificado (Un traitement justifié)
Épisode 7 : La veranda (La Serre)
Épisode 8 : Augustine de Villebranche (Augustine de Villebranche)
Épisode 9 : El Signo (Le Signe)
Épisode 10 : Hércules a los pies de Omphale (Hercule aux pieds d'Omphale)
Épisode 11 : La Azotaina (La Fessée)
Épisode 12 : El Semi-Matrimonio (Le demi-mariage ou Le triomphe de la vertu)
Épisode 13 : El Desquite (La Revanche)
Épisode 14 : La Mandrágora (La Mandragore)
Épisode 15 : La Prueba de amor (L'Épreuve d'amour)
Épisode 16 : El Compañero inesperado (Le Partenaire inattendu)
Épisode 17 : Almanaque (Almanach des adresses des demoiselles de Paris)
Épisode 18 : Ella y él (Elle et lui)
Épisode 19 : La Dama galante (La Dame galante)
Épisode 20 : Lady Roxane (Lady Roxane)
Épisode 21 : La conversión (La conversion)
Épisode 22 : El Loto de oro (Le Lotus d'or)
Épisode 23 : Experte Halima (L'Experte Halima)
Épisode 24 : El Estilo Pompadour (Le Style Pompadour)
Épisode 25 : La Huelga del amor (La Grève de l'amour)
Épisode 26 : Las Lecciones de Bucciuolo (Les Leçons de Bucciuolo)


Info:

Episodios: 26 episodisos
Hosts: Depositfiles/Filesonic
Tipo de Archivo: Avi/Wmv

http://depositfiles.com/folders/8ZXA1Y3QN

Friday, May 25, 2012

Remove backdoor



>netstat -ao  (locate reference to unknow addres, for example
    ovh.net

>taskkill /pid pid

remove from register with regedit

aditional if your clock doesn't work

net stop w32time
w32tm /unregister [ignore error message]
w32tm /unregister [enter a second time]
w32tm /register
reg add hklm\system\currentcontrolset\services\w32time\parameters\ /v NtpServer /t reg_sz /d time.nist.gov /f
net start w32time
w32tm /resync

The default polling time for updating the clock's time is only once every 7 days. This is why the clock gets off by so much (e.g. seconds if not many minutes) until it's the 7th day for your clock to automatically update again. Only then is the clock accurate, but it immediately starts losing time again until it updates in 7 more days. The sources for updating the clock are deadly accurate (NIST = National Institute of Standards and Technology), but the problem is that it doesn't update itself often enough. Here's the fix:

On the XP system change the update (polling time) intervals by doing the following:

1. Type “regedit” in Run located in Start
2. Navigate to the following key in the left pane:
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\W32Time\TimeProviders\NtpC lient.
3. In the right pane, double click the entry called SpecialPollInterval.
4. In the Base section of the Edit DWord Value dialog box, click the Decimal option button.
5. Enter the desired interval in seconds (3600 = 1 hour, 1800 = 30 minutes, 86400 = 24 hours, and so forth).
6. Click OK and close the registry editor.


(Originally set at 604,800 seconds, which equals 7 days, or once every week. I have set mine to 1,800 seconds, which updates my clock once every 30 minutes. My clock is never more than a few seconds off...

Linux get quota by folder



if you get "Disk quota exceeded", then you like know what happened with your folders


$find . -type f | cut -d "/" -f 2 | sort | uniq -c | sort -n


$du
$df

woks too

references:
[1] http://www.codecoffee.com/tipsforlinux/articles/22.html

Wednesday, May 16, 2012

Making sniffer using libpcap




[0] http://www.tcpdump.org/pcap.html
[1] http://www.joshuarobinson.net/docs/libpcap_offline.html
[2] http://yuba.stanford.edu/~casado/pcap/section1.html
[3] http://www.winpcap.org/docs/docs_40_2/html/group__wpcapsamps.html
[4] http://www.linuxquestions.org/questions/programming-9/undefined-reference-to-functions-from-pcap-h-319252/

package samples
[5] http://wiki.wireshark.org/SampleCaptures



Tutorial how to
[1] http://www.linuxforu.com/2011/02/capturing-packets-c-program-libpcap/


More
http://www.tcpdump.org/pcap.html
http://networksecurity.org.ua/0596007949/networkst-chp-10-sect-2.html
http://www.tcpdump.org/pcap/pcap.html
http://commons.oreilly.com/wiki/index.php/Network_Security_Tools/Modifying_and_Hacking_Security_Tools/Writing_Network_Sniffers
 http://eecs.wsu.edu/~sshaikot/docs/lbpcap/
http://www.eecis.udel.edu/~sunshine/expcs/code/pcap_packet_read.c


Source:
[1] http://code.google.com/p/chengchuntu1/source/checkout
[2] http://sock-raw.org/papers/syn_scanner





Firefox open multiple private window

    /opt/firefox/firefox-bin --profile $(mktemp -d) --private-window www.google.com www.bing.com