04

Projects

Some of my FLOSS projects. All under GPLv2 license


Download: My PHP Shell v0.1

My PHP Shell Screenshot
Description:

My PHP Shell is a very simple and easy to use webshell on PHP coded for security testing purposes.
With this project I intend to make web-shell experience similar to real Xwindow terminal emulator (gnome-terminal/eterm/putty/etc..).
The idea is to build a light-weight and easy-to-use webshell for personal usage.

Key features:
  • Easy command input
  • One small sized file
  • Kool self-destruct button ;-)
  • Local bindshell
  • Back connect shell
  • Command aliases
  • Terminal buffering
  • File upload via form
  • File editor

Future plans:
  • File download
  • Online users watcher
  • FTP local bruteforce
  • Basic mysql functionality
  • Terminal tabs
  • Compressed version
  • Different skins
  • More Ajax functionality

Latest Changes:
  • No changes yet, it's the first release



Download: Template Class PHP

Description:

Template Class PHP A very very simple html template php class (built for php4)

Usage example:
  
 In php file:
  
  $obj= new template("template.html", "header.html", "footer.html"); //assinging current template + header + footer
  $obj->assign_vars(array("VAR1"=>$content_var1, "VAR2" => $content_var2)); // setting up vars
  $obj->assign_templates(array("SOME_HTML_BLOCK" => "other_template.html")); // other templates
  $obj->parse(); // parsing everything
  $html = $obj->fetch(); // fetching the output string
  echo $html; 
   // OR Simply:
  $obj->output(); // echo output string

In template.html :

 ...html content ...
 {VAR1} - this will be replaced with $content_var1
 {VAR2} - this will be replaced with $content_var2
 {SOME_HTML_BLOCK} - this will be replaced with contens other_template.html
 .. html content ...

Key features:
  • PHP4 + PHP5 support
  • Easy to use
  • Small size

Future plans:
Not known

Download: CodeIgniter Google JS Helper

Description:

CodeIgniter Google Javascript Library Helper
A pretty useless helper actualy, but included in CI core can make a big difference, Please visit The GOOOGLE for more info.

Usage example:

 First rename googlejs_helper.txt to googlejs_helper.php and put it in the system/helpers/ directory under the CI root

 In constructor file simply:
	$this->load->helper('googlejs');
 In view:
	<?=load_gjs("jquery", "1.2.6", true);?> [library]/[version]/<compressed/uncompressed>

 The output will be like this: 
	<script language="Javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>

Key features:
  • For those who are very lazy and forget how to write <script ...



Link: http://code.google.com/p/brutalpenetration/

Description:

Brutal Penetration
Brutal Penetration is a distributed brute force suite written in the Python scripting language.
It's not my project. I'm working on the networking part.


Key features:
  • Rainbow tables
  • It's python
  • It's distributed
  • MD5, SHA1


Notes:

If you want to point out some bugs or you got some suggestions don't hesitate to contact me.

Quote:

"Say AK, not OK." - Mikhail Timofeevich Kalashnikov