Search results for all lists

10000 messages found
Sort by
List: websecurity@lists.webappsec.org
From: Ryan Dewhurst
 
Re: [WEB SECURITY] program to crawl website looking for string patterns
Fri, Sep 16, 2011 4:51 PM
ng for a tool that can be configured to crawl for string patterns (ie. SSNs, credit card numbers, etc).  Cornell's Spider 2008 beta has this capability, but every time we used it, it crashed on us. > > We also found a program called webshag, but it would only look for pre-defined stuff like email addresses or external links. > > Did some googling, but haven't really found anything.  Thoughts? > > > > Thanks. > Jason Youngquist, CISSP > Information Technology Security Engineer > Technology Services > Columbia College > 1001 Rogers Street, Columbia, MO  65216 > (573) 875-7334 > jryoungquist@ccis.edu > http://www.ccis.edu > > > _______________________________________________ > The Web Security Mailing List > > WebSecurity RSS Feed > http://www.webappsec.org/rss/websecurity.rss > > Join WASC on LinkedIn http://www.linkedin.com/e/gis/83336/4B20E4374DBA > > WASC on Twitter > http://twitter.com/wascupdates > > websecurity@lists.webappsec.org > http://lists.webappsec.org/mailman/listinfo/websecurity_lists.webappsec.org >
List: websecurity@lists.webappsec.org
From: Tasos Laskos
 
Re: [WEB SECURITY] program to crawl website looking for string patterns
Fri, Sep 16, 2011 6:25 PM
e => 'My module', :description => %q{Greps pages for a string.}, :author => 'Your name', :version => '0.1', :targets => { 'Generic' => 'all' }, :issue => { :name => %q{Found my string}, :description => %q{some description}, :cwe => '', :severity => Issue::Severity::LOW, :cvssv2 => '0', :remedy_guidance => %q{Remode the damn thing.}, :remedy_code => '', } } end end end end ---------------- 2) Save it as "my_module.rb" and put it under "modules/recon/grep/" 3) run arachni like so: arachni -m my_module And you're good to go. :) [1] http://arachni.segfault.gr/ On 09/16/2011 07:51 PM, Ryan Dewhurst wrote: > w3af [0] has lot's of grepping plugins which can easily be expanded. > Should do what you want. > > [0] http://w3af.sourceforge.net/ > > Ryan Dewhurst > > blog www.ethicalhack3r.co.uk > projects www.dvwa.co.uk | www.webwordcount.com > twitter www.twitter.com/ethicalhack3r > > > > On Fri, Sep 16, 2011 at 2:55 PM, Youngquist, Jason R. > wrote: >> We are looking for a tool that can be configured to crawl for string patterns (ie. SSNs, credit card numbers, etc). Cornell's Spider 2008 beta has this capability, but every time we used it, it crashed on us. >> >> We also found a program called webshag, but it would only look for pre-defined stuff like email addresses or external links. >> >> Did some googling, but haven't really found anything. Thoughts? >> >> >> >> Thanks. >> Jason Youngquist, CISSP >> Information Technology Security Engineer >> Technology Services >> Columbia College >> 1001 Rogers Street, Columbia, MO 65216 >> (573) 875-7334 >> jryoungquist@ccis.edu >> http://www.ccis.edu >> >> >> _______________________________________________ >> The Web Security Mailing List >> >> WebSecurity RSS Feed >> http://www.webappsec.org/rss/websecurity.rss >> >> Join WASC on LinkedIn http://www.linkedin.com/e/gis/83336/4B20E4374DBA >> >> WASC on Twitter >> http://twitter.com/wascupdates >> >> websecurity@lists.webappsec.org >> http://lists.webappsec.org/mailman/listinfo/websecurity_lists.webappsec.org >> > > _______________________________________________ > The Web Security Mailing List > > WebSecurity RSS Feed > http://www.webappsec.org/rss/websecurity.rss > > Join WASC on LinkedIn http://www.linkedin.com/e/gis/83336/4B20E4374DBA > > WASC on Twitter > http://twitter.com/wascupdates > > websecurity@lists.webappsec.org > http://lists.webappsec.org/mailman/listinfo/websecurity_lists.webappsec.org >
List: websecurity@lists.webappsec.org
From: illumina7i
 
Re: [WEB SECURITY] program to crawl website looking for string patterns
Mon, Sep 19, 2011 10:34 AM
       @page = page >    end > >    def run( ) >        match_and_log( "the string you're looking for" ) >    end > >    def self.info >        { >            :name           => 'My module', >            :description    => %q{Greps pages for a string.}, >            :author         => 'Your name', >            :version        => '0.1', >            :targets        => { 'Generic' => 'all' }, >            :issue   => { >                :name        => %q{Found my string}, >                :description => %q{some description}, >                :cwe         => '', >                :severity    => Issue::Severity::LOW, >                :cvssv2      => '0', >                :remedy_guidance    => %q{Remode the damn thing.}, >                :remedy_code => '', >            } >        } >    end > > end > end > end > ---------------- > 2) Save it as "my_module.rb" and put it under "modules/recon/grep/" > 3) run arachni like so: >        arachni -m my_module > > > And you're good to go. :) > > [1] http://arachni.segfault.gr/ > > > > On 09/16/2011 07:51 PM, Ryan Dewhurst wrote: >> >> w3af [0] has lot's of grepping plugins which can easily be expanded. >> Should do what you want. >> >> [0] http://w3af.sourceforge.net/ >> >> Ryan Dewhurst >> >> blog www.ethicalhack3r.co.uk >> projects www.dvwa.co.uk | www.webwordcount.com >> twitter www.twitter.com/ethicalhack3r >> >> >> >> On Fri, Sep 16, 2011 at 2:55 PM, Youngquist, Jason R. >>  wrote: >>> >>> We are looking for a tool that can be configured to crawl for string >>> patterns (ie. SSNs, credit card numbers, etc).  Cornell's Spider 2008 beta >>> has this capability, but every time we used it, it crashed on us. >>> >>> We also found a program called webshag, but it would only look for >>> pre-defined stuff like email addresses or external links. >>> >>> Did some googling, but haven't really found anything.  Thoughts? >>> >>> >>> >>> Thanks. >>> Jason Youngquist, CISSP >>> Information Technology Security Engineer >>> Technology Services >>> Columbia College >>> 1001 Rogers Street, Columbia, MO  65216 >>> (573) 875-7334 >>> jryoungquist@ccis.edu >>> http://www.ccis.edu >>> >>> >>> _______________________________________________ >>> The Web Security Mailing List >>> >>> WebSecurity RSS Feed >>> http://www.webappsec.org/rss/websecurity.rss >>> >>> Join WASC on LinkedIn http://www.linkedin.com/e/gis/83336/4B20E4374DBA >>> >>> WASC on Twitter >>> http://twitter.com/wascupdates >>> >>> websecurity@lists.webappsec.org >>> >>> http://lists.webappsec.org/mailman/listinfo/websecurity_lists.webappsec.org >>> >> >> _______________________________________________ >> The Web Security Mailing List >> >> WebSecurity RSS Feed >> http://www.webappsec.org/rss/websecurity.rss >> >> Join WASC on LinkedIn http://www.linkedin.com/e/gis/83336/4B20E4374DBA >> >> WASC on Twitter >> http://twitter.com/wascupdates >> >> websecurity@lists.webappsec.org >> >> http://lists.webappsec.org/mailman/listinfo/websecurity_lists.webappsec.org >> > > > _______________________________________________ > The Web Security Mailing List > > WebSecurity RSS Feed > http://www.webappsec.org/rss/websecurity.rss > > Join WASC on LinkedIn http://www.linkedin.com/e/gis/83336/4B20E4374DBA > > WASC on Twitter > http://twitter.com/wascupdates > > websecurity@lists.webappsec.org > http://lists.webappsec.org/mailman/listinfo/websecurity_lists.webappsec.org >
List: trawlers@lists.trawlering.com
From: Jim Donnelly
 
website on corrosion and many other topics, test for 316ss
Mon, Jul 4, 2005 12:23 AM
tuff) - the acid test with a 9 volt battery. You put a drop of acid (HCl works fine) on the metal. With a 9 volt battery and 2 pieces of jumper wire- you ground the negative side to the sample and just touch the positive wire to the drop of acid. The acid will turn pink+ to red immediately if it is high moly stainless. That makes it worth twice as much. In the Papermill business we use mostly 316 due to its RELATIVE (but not absolute) resistance to Chloride Stress Corrosion which leads to catastrophic cracks. - you are much safer with good hot dip galvanized steel screws (not the flash plated junk) than you are with any "stainless". Monel is good. But hard to get small quantities in the sizes we use (14 x 2 1/2). The name "Stainless Steel" is about as definitive as "Dog" read this stuff: www.corrosion-doctors.org . Silicon Bronze is another subject- There has been a lot of trouble in the REAL ( wooden) Boat Building and Repair industry with junk metal sold as Silicon Bronze. (Dont Eat that, Elmer). This stuff has caused serious trouble with snapping off during driving. Look at some back issues of Wooden Boat for coverage on this. Also search on the web to read about Brasses and Bronzes. Brass has no place at all in the marine environment, except as shiny stuff. Jim Donnelly Troller Fan Isle With the OPEN WIRELESS NODE at Powell River BC
List: trawlers@lists.trawlering.com
From: Don & Sharon
 
Re: T&T: Eastern seaboard Charts on CD's [Your Website}
Tue, Mar 31, 2009 2:00 AM
to your hoster as proficient is not good enough assurance for me!!! My McAfee tripped as well. Said "JS/Tenia.d " trojan No virus found in this outgoing message. Checked by AVG - www.avg.com Version: 8.5.278 / Virus Database: 270.11.31/2028 - Release Date: 03/28/09 07:16:00
List: trawlers@lists.trawlering.com
From: L H
 
Re: T&T: Eastern seaboard Charts on CD's [Your Website}
Tue, Mar 31, 2009 4:16 PM
the same experience. Two > different virus checkers can't be wrong. > > Ron Rogers > > - > I'm afraid pointing to your hoster as proficient is not good enough > assurance for me!!! > My McAfee tripped as well. > > Said "JS/Tenia.d " trojan
List: trawlers@lists.trawlering.com
From: Rudy Sechez
 
Re: T&T: Check out our ad on our website...
Mon, Nov 27, 2017 2:32 PM
business interest in this product, we just think it's a great anchor. Rudy & Jill Sechez Briney Bug-34' sail-assisted Trawler Panama City, Fl
List: time-nuts@lists.febo.com
From: J. Forster
 
Re: [time-nuts] Dymec manual and pictures at Ko4bbs website now
Fri, Oct 29, 2010 2:14 AM
a JPG. If that fails contact me off list at manuals@artekmedia.com, he can upload me the fiels to my server and I'll convert them. It will only take a minute to convert them Dave ============= -John ============= > _______________________________________________ > time-nuts mailing list -- time-nuts@febo.com > To unsubscribe, go to > https://www.febo.com/cgi-bin/mailman/listinfo/time-nuts > and follow the instructions there. > >
List: time-nuts@lists.febo.com
From: paul swed
 
OT eprom set for HP8757a uploaded to KO4BB website
Sat, Dec 3, 2011 9:43 PM
List: trawlers@lists.trawlering.com
From: Keith
 
Re: Steel fuel tank questions...correction
Mon, Oct 4, 2004 11:59 AM
One of the surveyors around here put his little tapping hammer on top of a tank like that, and had to fish it out later. Fuel sloshing out of even the top of the tank is nasty. Those sound like they're in bad shape. There's also a reason they're rusty. Find that and plan on the $$ to correct. Keith __ Black holes suck!