Friday, July 09, 2010

Violentar Windows XP SP2

1. Inicio, Ejecutar, regedit
2. Localizar HKEY_LOCAL_MACHINE/Sofware/Microsoft/Windows NT/CUrrentVersion/WPAEvents
3. Editar, eliminar 'fd'
4. Cerrar regedit.
5. Inicio, Ejecutar, oobe/msoobe /a
6. Seleccionar cambiar la clave del producto y luego método del telefono.
7. Introducir clave valida por ejmplo: GDFJC-Y292J-R332C-MXRDX-XT6GY
8. Aceptar y reiniciar
9. Inicio, Ejecutar, oobe/msoobe /a
10. Eres un delincuente informático mas


Eliminar ampay de copia pirata(estrellita) via script

----------------------VilentarXpSp2-2.cmd-------------------------------------
taskkill /im wgatray.exe
Del c:\Windows\System32\WgaTray.exe
Del c:\Windows\System32\dllcache\WgaTray.exe
echo Windows Registry Editor Version 5.00 >%temp%\WGANFIX.REG
echo. >>%temp%\WGANFIX.REG
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\WgaLogon] >>%temp%\WGANFIX.REG
regedit /s %temp%\WGANFIX.REG
del %temp%\WGANFIX.REG
del c:\windows\system32\wgalogon.dll
del c:\windows\system32\dllcache\wgalogon.dll

Windows 10 - Jun-2018
QJNXR-YD97Q-K7WH4-RYWQ8-6MT6Y

Tuesday, July 06, 2010

Configuración conector DB15 para Monitor LG 500G

No siempre todos los fabricantes siguen el standard, asi q despues de 8hr de jugar con el cautil logré encontrar esta configuración.

Rosado (en el tuyo rojo) = pin 1
Verde = pin 2
Azul = pin 3
Tierra = pin 4
Negro delgado = pin 5

Tierra = pin 6
Morado = pin 9

Tierra = pin 11 (este es el que va al zocalo)
Anaranjado = pin 12
Transparenete/Gris = pin 13
Amarillo = pin 14
Blanco = pin 15

C++ IDE

http://zinjai.sourceforge.net/

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

Saturday, June 19, 2010

Linux wireless LAN support

http://linux-wless.passys.nl/query_hostif.php?hostif=USB

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".

Wednesday, June 16, 2010

Security tools

Recovery Tools
http://www.nirsoft.net
http://www.nirsoft.net/packages/passrec.zip

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

C++ USB

http://www.alanmacek.com/usb/

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

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)

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

Información de host

show variables like 'host%'

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

Thursday, June 03, 2010

Modern Talking

http://www.taringa.net/posts/musica/1518848/Discografia-de-Modern-Talking.html

Running apps

Runtastic (I uninstalled because force to update your device - Internet connection problems) Runkeeper  (Wrong GPS tracking) Strava   (Curr...