=/= DFF scanner v 1.1 =/= _ 2007-05-17 10:54:00 _ Izasla je nova verzija skenera sa mnogo novih opcija i poboljsanja. Takodje, alat je preporucen na OWASP (Open Web Application Security Project) listi alata. Ova verzija poseduje opcije trazenje fajlova, bolju kastomizaciju cURL-a, bolje prepoznavanje "custom" 404 stranica, bolja optimizacija koda, i jos mnogo toga. Primer upotrebe: ------------------------------------------------------------------- require_once 'dff.files.class.php'; // Create object $dff = new dffFiles(); // Chose url to scan $dff->url = 'http://www.security-net.biz/'; // Chose first letters $dff->names_by_letter = array('w','a','t','b'); // Custom names $dff->custom_names = array('admin', 'blog', 'forum', 'crm'); // Use dictionary file, select mode $dff->use_dic_file = 'MERGE_CUSTOM'; // Path od dictionary file $dff->dic_file = 'dic.txt'; // cURL // Use proxy $dff->curl_proxing = ''; // Follow redirection $dff->curl_follow = 'YES'; // Nobody $dff->curl_nobody = 'YES'; // Set user agent $dff->curl_useragent = ''; // Set reffer $dff->curl_reffer = ''; // Chose level of in_deep $dff->in_deep = 1; // Dislay as fonded pages that are similar to custom 404 $dff->display_similiar = 0; // Set custom 404, leave empty for discover $dff->c404 = ''; // Display message with mommentary url $dff->trying = 0; // FILE scan // Chose first letters $dff->file_names_by_letter = array('w','a','t','b'); // Custom names $dff->file_custom_names = array('admin', 'blog', 'forum', 'crm'); // Use dictionary file, select mode $dff->file_use_dic_file = 'MERGE_CUSTOM'; // Path od dictionary file $dff->file_dic_file = 'dic_file.txt'; // Custom extensions $dff->file_extensions = array('.bak','.dat','.txt'); // Scan $dff->scan_it(); ------------------------------------------------------------------- DFF v 1.1 download