Search

Search

Social Media - Mubix

Social Media


This is a Flickr badge showing public photos and videos from mubix. Make your own badge here.
Login
Tuesday
Aug242010

Motion Detector for iPhone

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
Aug232010

Wallpaper source

Wallpapers can be used as stunning slide backgrounds for presentations, this is where I get mine:

http://pixhome.blogspot.com/

Wednesday
Aug182010

Free CCNA Study Guide

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
Aug182010

ASP SQL Injection Example Code

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
Aug172010

PDF JS Fuzzer

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.