Leave a Reply

Related Post

Brian Haddock Resume

A creative, quality-minded software engineer with over twenty years experience programming mainframe, pc client server, and internet web based applications covering a broad range of functional areas. The following is my current resume.

Gaining Shell Access via Local File Inclusion Vulnerabilities

My firewall caught some odd injection attempts which lead to research on the intent of the hackers. Turns out it was an attempt to gain Shell access via Local File Inclusion vulnerabilities and injection of malicious code in proc/self/environ. Research lead to the following step-by-step instructions on what was being attempted (listed below).

Useful Unix Commands

Useful Unix commands To search text in files and all subdirectories find [directory] -name [files] | xargs grep [text to search for] Example to find “insert” in the odb directory (search all files in that directory): find odb -name “*” | xargs grep “insert” Run job in batch now at -s now < thejob.sh List […]