Thursday, July 01, 2010
Tuesday, June 22, 2010
Exploits documentación
Stack overflow referencia práctica
http://www.elgaragevirtual.com.ar/2009/05/exploits-y-stack-overflows-en-windows.html
Referencias
Estadisticas desde ESET NOD32
http://blogs.eset-la.com/laboratorio/2010/04/05/problemas-paquetes-vulnerabilidades-exploits/
Aurora en acción
http://blog.metasploit.com/2010/01/reproducing-aurora-ie-exploit.html
Testeados
http://www.clshack.it/es/guida-alluso-di-metasploit.html
Recursos
http://www.dragonjar.org/reemplazo-de-milw0rm.xhtml
http://sebug.net/
http://www.pentester.es/2009/11/por-que-no-consigo-shell-con-mi.html
http://www.elgaragevirtual.com.ar/2009/05/exploits-y-stack-overflows-en-windows.html
Referencias
Estadisticas desde ESET NOD32
http://blogs.eset-la.com/laboratorio/2010/04/05/problemas-paquetes-vulnerabilidades-exploits/
Aurora en acción
http://blog.metasploit.com/2010/01/reproducing-aurora-ie-exploit.html
Testeados
http://www.clshack.it/es/guida-alluso-di-metasploit.html
Recursos
http://www.dragonjar.org/reemplazo-de-milw0rm.xhtml
http://sebug.net/
http://www.pentester.es/2009/11/por-que-no-consigo-shell-con-mi.html
Saturday, June 19, 2010
TL-WN722N
Driver compatible bajo Linux
http://linuxwireless.org/en/users/Drivers/ath9k_htc
http://linuxwireless.org/en/users/Drivers/ath9k_htc/devices TL-WN721N (Sin adap. externo)
Notas:
El adaptador TP-WN722N tiene un "hermanito", el WN721N. Los dos son reconocidos como "man: 0cf3 - dev: 9271".
http://linuxwireless.org/en/users/Drivers/ath9k_htc
http://linuxwireless.org/en/users/Drivers/ath9k_htc/devices TL-WN721N (Sin adap. externo)
Notas:
El adaptador TP-WN722N tiene un "hermanito", el WN721N. Los dos son reconocidos como "man: 0cf3 - dev: 9271".
Wednesday, June 16, 2010
Cross-site data retrieval
Using jQuery for load webService on Same domain
http://encosia.com/2008/03/27/using-jquery-to-consume-aspnet-json-web-services/
Using Proxy
http://www.west-wind.com/weblog/posts/324917.aspx
Flicker service
http://www.adictosaltrabajo.com/tutoriales/tutoriales.php?pagina=jQueryAjaxRESTfulWebServiceJSON
http://encosia.com/2008/03/27/using-jquery-to-consume-aspnet-json-web-services/
Using Proxy
http://www.west-wind.com/weblog/posts/324917.aspx
Flicker service
http://www.adictosaltrabajo.com/tutoriales/tutoriales.php?pagina=jQueryAjaxRESTfulWebServiceJSON
Tuesday, June 15, 2010
Links necesarios
pagina blancas directo
http://paginasblancas.com.pe/resultados.asp?t=225151
guid
http://createguid.com/
firefox personal addon
http://foro.elhacker.net/programacion_general/howto_crear_extensiones_para_firefox-t127159.0.html
http://paginasblancas.com.pe/resultados.asp?t=225151
guid
http://createguid.com/
firefox personal addon
http://foro.elhacker.net/programacion_general/howto_crear_extensiones_para_firefox-t127159.0.html
Firefox Developer
Addon make new addons
http://ted.mielczarek.org/code/mozilla/extensiondev/
How To Disable ‘will not be installed because it does not provide secure updates’ Warning in Firefox 3
By default, Firefox 3 prevents users from installing any extensions that do not offer a secure connection for automatic updates. This prevents users from being victims of hijacked update URLs.
But for developers or people installing extensions they know they can trust, it is a pain.
Luckily it is easily disabled by:
1. Enter ‘about:config’ into address bar, hit go
2. Right click somewhere in the list of keys below. Select New->Boolean
3. Enter ‘ extensions.checkUpdateSecurity ‘ as the name
4. Select false as the value
5. Reattempt installation of your plugin.
Ran into this problem when installing Extension Developer’s Extension while working on Read It Later.
Found the solution at MozillaZine (via Google)
http://ted.mielczarek.org/code/mozilla/extensiondev/
How To Disable ‘will not be installed because it does not provide secure updates’ Warning in Firefox 3
By default, Firefox 3 prevents users from installing any extensions that do not offer a secure connection for automatic updates. This prevents users from being victims of hijacked update URLs.
But for developers or people installing extensions they know they can trust, it is a pain.
Luckily it is easily disabled by:
1. Enter ‘about:config’ into address bar, hit go
2. Right click somewhere in the list of keys below. Select New->Boolean
3. Enter ‘ extensions.checkUpdateSecurity ‘ as the name
4. Select false as the value
5. Reattempt installation of your plugin.
Ran into this problem when installing Extension Developer’s Extension while working on Read It Later.
Found the solution at MozillaZine (via Google)
Saturday, June 12, 2010
DNS IP Tools
Dns verifyier
https://www.dns-oarc.net/oarc/services/dnsentropy
IP Information Country/City/Map and more...
http://whatismyipaddress.com/ip-lookup
IP tools
http://www.iptools.com/
TCPView Similarly
http://www.nirsoft.net/utils/cports.html
https://www.dns-oarc.net/oarc/services/dnsentropy
IP Information Country/City/Map and more...
http://whatismyipaddress.com/ip-lookup
IP tools
http://www.iptools.com/
TCPView Similarly
http://www.nirsoft.net/utils/cports.html
Friday, June 11, 2010
Wednesday, June 09, 2010
mySQL Tools
Great administrative/struture of mySql Database and Statistics
http://www.heidisql.com/download.php
http://www.heidisql.com/download.php
Tuesday, June 08, 2010
ASP.NET HttpException: Maximum request length exceeded
Limite por defecto para uploads en Web.Config es 4096 (4 megabytes)
Las siguientes lineas cambian a 20MB
<configuration>
...
<system.web>
...
<httpRuntime maxRequestLength="20480" />
</system.web>
</configuration>
Otras Configuraciones
<httpRuntime executionTimeout="300" maxRequestLength="51200"/>
<httpRuntime
executionTimeout="1200"
maxRequestLength="102400"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100" />
Nota:
maxRequestLength<=1048576 (1 GB) para .NET Framework 1.0/1.1 y
maxRequestLength<=2097151 (2 GB) for .NET Framework 2.0.
Referencias
FileUpEE - Large Uploads in ASP.NET:
http://support.softartisans.com/docs/fileupeev4/doc/dotnet/aspdotnet_largeuploads.asp
FileUpSE - large uploads in ASP.NET:
http://support.softartisans.com/docs/fileupv4/prog_g_dotnet_largeuploads.htm
Las siguientes lineas cambian a 20MB
<configuration>
...
<system.web>
...
<httpRuntime maxRequestLength="20480" />
</system.web>
</configuration>
Otras Configuraciones
<httpRuntime executionTimeout="300" maxRequestLength="51200"/>
<httpRuntime
executionTimeout="1200"
maxRequestLength="102400"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100" />
Nota:
maxRequestLength<=1048576 (1 GB) para .NET Framework 1.0/1.1 y
maxRequestLength<=2097151 (2 GB) for .NET Framework 2.0.
Referencias
FileUpEE - Large Uploads in ASP.NET:
http://support.softartisans.com/docs/fileupeev4/doc/dotnet/aspdotnet_largeuploads.asp
FileUpSE - large uploads in ASP.NET:
http://support.softartisans.com/docs/fileupv4/prog_g_dotnet_largeuploads.htm
Thursday, June 03, 2010
Wednesday, June 02, 2010
Aplicaciones para desarrollo Wap (Celular)
http://www.webmasterfree.com/WAPTor_d628.html
TTEmulator
http://www.inetis.com/index.php?module=ttemulator#free
http://emulator.mtld.mobi/emulator.php?emulator=nokiaN70&webaddress=http%3A%2F%2Fverifytransport.somee.com%2Fwap%2F
Browser WAP Emulador
Wap Proof (Muy bueno, muestra source code de las url)
http://www.wap-proof.com/wap_browser_download.php
WinWAP for Windows/Smartphone Browser Emulator(UN asco, no permite cambiar url)
Toolkits
Nokia Qt SDK Beta - QT & symbian (aprox. 800mb)
http://www.forum.nokia.com/Tools_Docs_and_Code/Tools/
Tutoriales WAP/WML
http://www.terra.es/personal/wapfacil/manwml6.htm
Comandos Mobile completo con ejemplos asp
http://www.w3schools.com/dotnetmobile/mobile_reference.asp
Are there specific HTTP headers for mobile?
http://www.thewirelessfaq.com/are_there_specific_http_headers_for_mobile
How to make ASP.NET Applications that support mobile devices
http://www.beansoftware.com/ASP.NET-Tutorials/WML-Mobile-PDA.aspx
TTEmulator
http://www.inetis.com/index.php?module=ttemulator#free
http://emulator.mtld.mobi/emulator.php?emulator=nokiaN70&webaddress=http%3A%2F%2Fverifytransport.somee.com%2Fwap%2F
Browser WAP Emulador
Wap Proof (Muy bueno, muestra source code de las url)
http://www.wap-proof.com/wap_browser_download.php
WinWAP for Windows/Smartphone Browser Emulator(UN asco, no permite cambiar url)
Toolkits
Nokia Qt SDK Beta - QT & symbian (aprox. 800mb)
http://www.forum.nokia.com/Tools_Docs_and_Code/Tools/
Tutoriales WAP/WML
http://www.terra.es/personal/wapfacil/manwml6.htm
Comandos Mobile completo con ejemplos asp
http://www.w3schools.com/dotnetmobile/mobile_reference.asp
Are there specific HTTP headers for mobile?
http://www.thewirelessfaq.com/are_there_specific_http_headers_for_mobile
How to make ASP.NET Applications that support mobile devices
http://www.beansoftware.com/ASP.NET-Tutorials/WML-Mobile-PDA.aspx
Tuesday, June 01, 2010
Funny Pictures
Funny Pictures
http://www.pickmeupnews.com
Andrea parker, all
http://wall.bete.tv/catlist.php?mcat=7&page=79
http://www.pickmeupnews.com
Andrea parker, all
http://wall.bete.tv/catlist.php?mcat=7&page=79
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/...
Ubuntu Forware port 80
#!/bin/bash iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8069 iptables -t nat -A PREROUTING -i eth0 -p tc...