Motion Detector for iPhone
Tuesday, August 24, 2010 at 12:00PM Motion Detecor app that was a bit tough to find:
http://itunes.apple.com/us/app/vm-alert-video-motion-detector/id387523411?mt=8
Tuesday, August 24, 2010 at 12:00PM Motion Detecor app that was a bit tough to find:
http://itunes.apple.com/us/app/vm-alert-video-motion-detector/id387523411?mt=8
Monday, August 23, 2010 at 12:41AM Wallpapers can be used as stunning slide backgrounds for presentations, this is where I get mine:
Wednesday, August 18, 2010 at 8:18PM This is actually really well done, and I suggest anyone that takes part in Redteam/Blueteam events check out the IPv6 section:
http://www.freeccnaworkbook.com/labs/
Wednesday, August 18, 2010 at 12:00PM I had to search high and low for ASP code that was injectable to test some code out and I didn't want to loose the link or the code so here are both:
http://articles.sitepoint.com/article/sql-injection-attacks-safe
<%
dim userName, password, query
dim conn, rS
userName = Request.Form("userName")
password = Request.Form("password")
set conn = server.createObject("ADODB.Connection")
set rs = server.createObject("ADODB.Recordset")
query = "select count(*) from users where userName='" &
userName & "' and userPass='" & password & "'"
conn.Open "Provider=SQLOLEDB; Data Source=(local);
Initial Catalog=myDB; User Id=sa; Password="
rs.activeConnection = conn
rs.open query
if not rs.eof then
response.write "Logged In"
else
response.write "Bad Credentials"
end if
%>
Tuesday, August 17, 2010 at 12:00PM http://monstream00.wordpress.com/code/
There are some other cool pieces of code on here too other than a PDF javascript fuzzer. A cool meterpreter script that watches for a process name and kills it. Raises red flags for pentests, but hilarious during CTF events.