My Server have:
1) Windows 2008 R2
2) IIS 7.5
I Installed using next resources:
[1] PHP http://windows.php.net/download/
[2] Microsoft 2008 C++ Runtime http://www.microsoft.com/en-us/download/details.aspx?id=30679
References:
[1] (Guide) http://www.iisunderground.com/installing-php-on-iis/
[2] http://sqlfromhell.wordpress.com/2009/12/21/instalando-o-php-no-iis-7-5/
[3] Include WordPress http://zousu.com/wp/install-wordpress-with-iis-7-php-mysql/
Friday, November 22, 2013
Tuesday, November 19, 2013
Wednesday, November 13, 2013
Who using my port 80/8080/8085/Other?
Windows Plataform
> netstat -aon | grep "LIST"
> netstat -aon | grep ":80" | grep "LIST"
*Get pid (Process id) and execute next command
>tasklist | grep "xxxx"
* xxxx is pid value
Resume for W7
>netstat -aon | grep ":80" | findstr "LIST"
>tasklist | findstr "xxxx"
Linux Plataform
#
..continue
Notes:
If you mean MS-DOS then there's only
If you mean NT(XP/2K/7/Vista)'s Command Prompt you can use
The basic differences are that findstr has some regex support. Grep supports regex best.
References:
[1] http://superuser.com/questions/300815/command-prompt-msdos-windows-7-grep-equivalent
> netstat -aon | grep "LIST"
> netstat -aon | grep ":80" | grep "LIST"
*Get pid (Process id) and execute next command
>tasklist | grep "xxxx"
* xxxx is pid value
Resume for W7
>netstat -aon | grep ":80" | findstr "LIST"
>tasklist | findstr "xxxx"
Linux Plataform
#
lsof
or
#netstat -tulpn
| grep :80
..continue
Notes:
If you mean MS-DOS then there's only
FIND
, as far as I know. But it's an ancient OS not used anymore.If you mean NT(XP/2K/7/Vista)'s Command Prompt you can use
find
, findstr
and grep
if you download GnuWin32.The basic differences are that findstr has some regex support. Grep supports regex best.
References:
[1] http://superuser.com/questions/300815/command-prompt-msdos-windows-7-grep-equivalent
Tuesday, November 12, 2013
Tools for Video Edit
1) Any Video Converter Ultimate
flv/mp4 -> mpg/avi (common requirement)
2) Virtual Dub [Video Editor +/- Audio stream]
http://www.free-codecs.com/virtualdub-mpeg2_download.htm
3) Audacity [Audio Editor]+ Pluging (Center Pan Remover/Vocal remover )
http://audacity.sourceforge.net/
flv/mp4 -> mpg/avi (common requirement)
2) Virtual Dub [Video Editor +/- Audio stream]
http://www.free-codecs.com/virtualdub-mpeg2_download.htm
3) Audacity [Audio Editor]+ Pluging (Center Pan Remover/Vocal remover )
http://audacity.sourceforge.net/
Vocal/Voice Remove Apps
I think Audicity pluging is best of below list
References
[1] http://mp3.about.com/od/essentialsoftware/tp/Top_Vocal_Removers.htm
References
[1] http://mp3.about.com/od/essentialsoftware/tp/Top_Vocal_Removers.htm
Monday, November 11, 2013
Windows 7 Language Packs Offline
Both resources have reference to same files, then i think that's ok.
Resources:
[1] Windows 7 RTM http://www.askvg.com/direct-download-link-official-links-to-download-mui-language-packs-for-windows-vista-and-7-both-32-bit-and-64-bit-versions-including-sp1-sp2/
[2] Windows 7 http://www.rtwincustomize.net/index.php?option=com_content&id=1360
Resources:
[1] Windows 7 RTM http://www.askvg.com/direct-download-link-official-links-to-download-mui-language-packs-for-windows-vista-and-7-both-32-bit-and-64-bit-versions-including-sp1-sp2/
[2] Windows 7 http://www.rtwincustomize.net/index.php?option=com_content&id=1360
Tuesday, November 05, 2013
Thursday, October 17, 2013
Monday, October 14, 2013
Transport Layer Protection - ASP.NET
Tools:
[1] asafaweb.com
References:
[1] OWASP Top 10 for .NET developers part 9: Insufficient Transport Layer Protection
http://www.troyhunt.com/2011/11/owasp-top-10-for-net-developers-part-9.html
[2] ASP.NET session hijacking with Google and ELMAH
http://www.troyhunt.com/2012/01/aspnet-session-hijacking-with-google.html
[3] Ramping up ASP.NET session security
http://www.dotnetnoob.com/2013/07/ramping-up-aspnet-session-security.html
Friday, September 27, 2013
SalesForce Security Revision - SSL Configuration Vulnerability
Resources:
[1] Setting Tool https://www.nartac.com/Products/IISCrypto/Default.aspx
[2] Scanner https://www.ssllabs.com/ssldb/index.html (Used by SalesForce Security Revision process)
[3] SSL Info http://www.serversniff.net
Asp.Net Insecure Session Cookie Handling Vulnerability
Add next code in c:\inetpub\wwwroot\web.config
<system.web>
<httpCookies
httpOnlyCookies="true"
requireSSL="true" />
</system.web>
References:
[1] http://www.codeproject.com/Articles/291562/Asp-net-web-application-Security-Review-Dos-Dont
[2] http://forums.asp.net/t/1756774.aspx
[3] http://www.enterprisenetworkingplanet.com/netsecur/ten-tips-to-make-your-ssl-secure.html
[4] https://www.owasp.org/index.php/HttpOnly
[5] http://xss.cx/examples/dork/programming/ssl-cookie-without-secure-flag-set-example.html#1.7
<system.web>
<httpCookies
httpOnlyCookies="true"
requireSSL="true" />
</system.web>
References:
[1] http://www.codeproject.com/Articles/291562/Asp-net-web-application-Security-Review-Dos-Dont
[2] http://forums.asp.net/t/1756774.aspx
[3] http://www.enterprisenetworkingplanet.com/netsecur/ten-tips-to-make-your-ssl-secure.html
[4] https://www.owasp.org/index.php/HttpOnly
[5] http://xss.cx/examples/dork/programming/ssl-cookie-without-secure-flag-set-example.html#1.7
IIS Custom Errors
1. Make html with custom message, and save that on any directory
c:\inetpub\wwwroot\custom_errors\404.html
c:\inetpub\wwwroot\custom_errors\500.html
2. Alter web.config of c:\inetpub\wwwroot, add next content.
<system.webServer>
<
httpErrors errorMode="Custom" existingResponse="Auto" defaultResponseMode="ExecuteURL">
<
clear />
<
error statusCode="404" path="/custom_errors/404.html" responseMode="ExecuteURL" />
<
error statusCode="500" path="/custom_errors/500.html" responseMode="ExecuteURL" />
<
/httpErrors>
<
/system.webServer>
References:
[1] http://stackoverflow.com/questions/434272/iis7-overrides-customerrors-when-setting-response-statuscode
[2] http://stackoverflow.com/questions/619895/how-can-i-properly-handle-404-in-asp-net-mvc
[3] http://stackoverflow.com/questions/717628/asp-net-mvc-404-error-handling
Friday, September 20, 2013
Claro Habla Gratis
Envia un SMS con el sgte formato(No te cobran los 3 primeros minutos):
La estructura del SMS (sin costo) al 779 es HG(espacio)(nĆŗmero voz 1)(coma)(nĆŗmero voz 2)(coma)(nĆŗmero SMS).
Nota: El nĆŗmero SMS puede ser tambiĆ©n uno de los primeros y la recarga es de S/.15 mĆnimo al mes.
referencia:
[1] http://www.claro.com.pe/wps/wcm/connect/pe/claro-2013-peru/pc/personas/movil/prepago/promociones/habla-gratis
Wednesday, September 18, 2013
MS Access Client GUI (For Sql Commands)
References:
[1] http://www.albahari.com/ (Parallel programing/Threading and more )
[2] Query Express http://www.albahari.com/queryexpress.aspx
[3] LinqPad http://www.linqpad.net/
Tuesday, September 17, 2013
API Key Google Maps
https://code.google.com/apis/console#sthash.FclYhbcs.dpuf
https://code.google.com/apis/console#sthash.FclYhbcs.dpuf
https://code.google.com/apis/console#sthash.FclYhbcs.dpuf
Ir a:
ttps://code.google.com/apis/console#sthash.FclYhbcs.dpuf
https://code.google.com/apis/console#sthash.FclYhbcs.dpuf
https://code.google.com/apis/console#sthash.FclYhbcs.dpuf
https://code.google.com/apis/console#sthash.FclYhbcs.dpuf
https://code.google.com/apis/console#sthash.FclYhbcs.dpuf
https://code.google.com/apis/console#sthash.FclYhbcs.dpuf
https://code.google.com/apis/console
Referencias:
[1] http://www.nonomartinez.com/2012/03/13/como-crear-una-api-key-para-google-maps-v3
MoSync over W7
MoSync no yet support 64bits, then after installation you get message related to jvm.dll
Solution:
Install standalone Java 32bits, over C:\Program Files(x86)\Java, then after installation of moSync you need create new shortcut.
C:\MoSync>C:\mosync\eclipse\mosync.exe -vm "C:\Progra~2\Java\jdk1.6.0_17\jre\bin\server\jvm.dll" eclipse.vm="C:\Progra~2\Java\jdk1.6.0_17\jre\bin\server\jvm.dll
" java.home="C:\Progra~2\Java\jdk1.6.0_17\jre" java.runtime.version=1.6
Solution:
Install standalone Java 32bits, over C:\Program Files(x86)\Java, then after installation of moSync you need create new shortcut.
C:\MoSync>C:\mosync\eclipse\mosync.exe -vm "C:\Progra~2\Java\jdk1.6.0_17\jre\bin\server\jvm.dll" eclipse.vm="C:\Progra~2\Java\jdk1.6.0_17\jre\bin\server\jvm.dll
" java.home="C:\Progra~2\Java\jdk1.6.0_17\jre" java.runtime.version=1.6
Nod32 best serials
Validos
Vencimiento U C
25/03/2014 EAV-84218011 fk3tv8p57v
Serial 1
http://actualizatu-nod32.blogspot.com/
Otros
http://serialnod32gratis.blogspot.com.br
http://nod32-serial.blogspot.com/
http://www.archivogeek.com/windows/software/username-y-password-serial-para-nod32/
Vencimiento U C
25/03/2014 EAV-84218011 fk3tv8p57v
Serial 1
http://actualizatu-nod32.blogspot.com/
Otros
http://serialnod32gratis.blogspot.com.br
http://nod32-serial.blogspot.com/
http://www.archivogeek.com/windows/software/username-y-password-serial-para-nod32/
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/...
Odoo 17 - Custom adds
[1] Diario/Seq https://apps.odoo.com/apps/modules/17.0/sequence_for_journal