Active Passive ftp IIS and other
- No Comments
- Mar, 09, 2010
- Angelo Schalley
- html / php, IIS, Linux, Networking, Windows-Microsoft
Here a brief explaination on the security on Passive FTP.
This has the same impact on the machines running passive ftp now a days
As you know, FTP is a TCP/IP application-level protocol—not a Microsoft invention. Passive FTP is described as part of the FTP protocol specification in IETF Request for Comments (RFC) 959, which you can find at http://www.w3.org/protocols/rfc959. Before I explain passive FTP (sometimes called PASV for the actual FTP command that requests this kind of connection), let me review how standard, or active, FTP works.
Read more on Active Passive ftp IIS and other…
redirect to another page with timer
- No Comments
- Nov, 29, 2009
- Angelo Schalley
- html / php
<HTML>
<script>
<!–
function autoChange()
{
var timeID = setTimeout(“location.href= ‘https://www.domain.com’”, 3000)
}
//–>
</script>
<BODY onLoad=”autoChange()”>
Deze pagina is verhuisd naar https://www.domain.com<BR>
Uw webbrowser zou dit automatisch moeten doorsturen.<BR>
Mocht uw browser dit niet doen, klik dan <A HREF=”http://www.domain.com”>hier</A> om verder te gaan.
</BODY>
</HTML>
Read more on redirect to another page with timer…