diff options
author | robiscool <robrob2626@yahoo.com> | 2009-05-31 14:40:40 -0700 |
---|---|---|
committer | robiscool <robrob2626@yahoo.com> | 2009-05-31 14:40:40 -0700 |
commit | c643744a2c193dbcf92a2a9703c8e27bb2472737 (patch) | |
tree | ce7bff647aecd67a5512cffd83de0814f9dba57b /config/snort | |
parent | b22bb5316cdb530fb3dcd106c538ac944179cd0a (diff) | |
download | pfsense-packages-c643744a2c193dbcf92a2a9703c8e27bb2472737.tar.gz pfsense-packages-c643744a2c193dbcf92a2a9703c8e27bb2472737.tar.bz2 pfsense-packages-c643744a2c193dbcf92a2a9703c8e27bb2472737.zip |
snort_download_rules.php oink code update
Diffstat (limited to 'config/snort')
-rw-r--r-- | config/snort/snort_download_rules.php | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/config/snort/snort_download_rules.php b/config/snort/snort_download_rules.php index 259bcf86..02290c7d 100644 --- a/config/snort/snort_download_rules.php +++ b/config/snort/snort_download_rules.php @@ -1,11 +1,8 @@ <?php /* $Id$ */ /* - snort_alerts.php - part of pfSense - - Copyright (C) 2005 Bill Marquette <bill.marquette@gmail.com>. - Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>. + snort_rulesets.php + Copyright (C) 2006 Scott Ullrich All rights reserved. Redistribution and use in source and binary forms, with or without @@ -118,10 +115,24 @@ if(!$pgtitle_output) ini_set('user_agent','Mozilla/4.0 (compatible; MSIE 6.0)'); ini_set("memory_limit","125M"); +/* define oinkid */ +if($config['installedpackages']['snort']) + $oinkid = $config['installedpackages']['snort']['config'][0]['oinkmastercode']; -/* hide progress bar and lets end this party */ +/* if missing oinkid exit */ +if(!$oinkid) { + $static_output = gettext("You must obtain an oinkid from snort.org and set its value in the Snort settings tab."); + update_all_status($static_output); + hide_progress_bar_status(); + exit; +} + +/* hide progress bar */ hide_progress_bar_status(); +/* send current buffer */ +ob_flush(); + /* remove old $tmpfname files */ if (file_exists("{$tmpfname}")) { /* echo "removing old {$tmpfname} files\n"; */ @@ -151,7 +162,7 @@ if (file_exists("{$tmpfname}/{$snort_filename_md5}")) { /* echo "downloading md5\n"; */ update_status(gettext("Downloading md5 file...")); ini_set('user_agent','Mozilla/4.0 (compatible; MSIE 6.0)'); -$image = file_get_contents('http://dl.snort.org/reg-rules/snortrules-snapshot-2.8.tar.gz.md5?oink_code=658d6fe74f30ac3efd01e7ff551f63d91a926430'); +$image = file_get_contents("http://dl.snort.org/reg-rules/snortrules-snapshot-2.8.tar.gz.md5?oink_code={$oinkid}"); $f = fopen("{$tmpfname}/snortrules-snapshot-2.8.tar.gz.md5", 'w'); fwrite($f, $image); fclose($f); @@ -190,7 +201,7 @@ if (file_exists("{$tmpfname}/{$snort_filename}")) { update_output_window(gettext("May take 4 to 10 min...")); update_output_window("{$snort_filename}"); -download_file_with_progress_bar("http://dl.snort.org/reg-rules/snortrules-snapshot-2.8.tar.gz?oink_code=658d6fe74f30ac3efd01e7ff551f63d91a926430", $tmpfname . "/{$snort_filename}", "read_body_firmware"); +download_file_with_progress_bar("http://dl.snort.org/reg-rules/snortrules-snapshot-2.8.tar.gz?oink_code={$oinkid}", $tmpfname . "/{$snort_filename}", "read_body_firmware"); update_all_status($static_output); /* echo "done\n"; */ update_status(gettext("Done.")); |