Tuesday, July 31, 2012
Tuesday, July 24, 2012
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
Tuesday, July 10, 2012
Tilsa Lozano (Before Face Sketch)
Oficial
http://www.tilsalozano.net/blogtili/?p=1606
http://www.tilsalozano.net/blogtili/?p=79
http://www.tilsalozano.net/blogtili/?p=967
Referencias:
http://hombresmujeresenfotosvideos.blogspot.com.br/2011/06/fotos-de-tilsa-lozano.html
http://www.miatilsa.com/category/fotos/
Tanga sin hilo
http://www.nopuedocreer.com/quelohayaninventado/296/tanga-sin-tirillas-con-enganche-analvaginal/
http://www.paconlevideos.com/2011/03/una-chica-muestra-el-tanga-sin-hilos-el.html?zx=6f90a4e880fd33e7
Monday, July 02, 2012
Friday, June 22, 2012
libpcap training
send package using libpcap
http://www.microhowto.info/howto/send_an_arbitrary_ethernet_frame_using_libpcap.html
DNS Spoofing
http://networkprojects.googlecode.com/svn-history/r2/trunk/
http://www.microhowto.info/howto/send_an_arbitrary_ethernet_frame_using_libpcap.html
DNS Spoofing
http://networkprojects.googlecode.com/svn-history/r2/trunk/
Saturday, June 09, 2012
TV Online Perú
https://willax.tv/en-vivo/
https://tvgratisperu.jimdofree.com
http://www.mill-tv.be/
http://www.tv-porinternet.com/2010/06/dragon-ball-z-online.html
http://www.visionperuanatv.info/2011/10/cha2.html
http://www.cebichetv.info/2011/03/frecuencia-latina-en-vivo.html (08-10)
Others:
http://www.cuevana2.tv/
Wednesday, June 06, 2012
Monday, June 04, 2012
Saturday, June 02, 2012
youtube to mp3 portable
online
[1] http://www.youtube-mp3.org/pt (max 20min)
standalone
[1] http://www.portablefreeware.com/forums/viewtopic.php?t=4496&view=previous
[1] http://www.youtube-mp3.org/pt (max 20min)
standalone
[1] http://www.portablefreeware.com/forums/viewtopic.php?t=4496&view=previous
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 23, 2012
Dibujo a Lápiz
Scarlett-Johansson
http://www.taringa.net/posts/arte/14803500.2/Scarlett-Johansson---Retrato-Tradicional-Realista.html
Bianca-Beauchamp
http://www.taringa.net/posts/arte/14099818/Bianca-Beauchamp---Retrato-Tradicional.html
Denise-Milani
http://www.taringa.net/posts/arte/13919654/Denise-Milani---Retrato-Tradicional.html
Saturday, May 19, 2012
Hipnosis conversacional
[1] http://naxoseduccion.blogspot.com.br/2011/07/persuasion-e-hipnosis-conversacional_04.html
[2] http://hipnosisconversacional.com/
[3] http://carlosesteban.lacoctelera.net/post/2010/05/13/el-poder-la-hipnosis-conversacional
[4] http://www.puabase.com/forum/hipnose-conversacional-2-dvds-t27555.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
Sunday, May 13, 2012
Saturday, May 12, 2012
Friday, May 11, 2012
Wednesday, May 09, 2012
Ettercap - Man in Middle
Single steps
http://linuxpoison.blogspot.com.br/2009/09/how-to-do-man-in-middle-attack-using.html
More details
http://openmaniak.com/ettercap_arp.php
Video references:
[1] http://www.youtube.com/watch?v=1eTb7OnV8X8
[2] http://www.youtube.com/watch?v=QSQaOnaRT8w
[3] with plugins for restore http://www.youtube.com/watch?v=ciuv5n5cmzs
[4] text mode/portugues http://www.youtube.com/watch?v=rPd7l4dF6mo
References:
[1] Arp http://openmaniak.com/ettercap_counter.php
[2] Dns Spoofing http://openmaniak.com/ettercap_filter.php
Saturday, May 05, 2012
Subscribe to:
Posts (Atom)
-
Resources: [1] Hela https://ome.grc.nia.nih.gov/iicbu2008/hela/index.html
-
en inglés se llama “A potentially dangerous Request.Form value was detected from the client”. varias páginas indican dos cosas: 1. agrega...
-
mas plugins http://devsnippets.com/reviews/using-jquery-to-style-design-elements-20-impressive-plugins.html http://www.extjs.com/deploy/dev/...
Facturador Sunat SEE SFS (Linux)
/usr/lib/jvm/java-8-openjdk-amd64/bin/java -jar ./facturadorApp-2.1.jar server prod.yaml References: [1] Make temp certificate for test...