|
SecLists.Org Security Mailing List Archive
Any hacker will tell you that the latest news and exploits are not
found on any web site—not even Insecure.Org. No, the cutting edge
in security research is and will continue to be the full
disclosure mailing lists such as Bugtraq. Here we provide web
archives and RSS feeds (now including message extracts), updated in real-time, for many of our favorite lists. Browse the individual lists below, or search them all:
Nmap Development — Unmoderated technical development forum for debating ideas, patches, and suggestions regarding proposed changes to Nmap and related projects. Subscribe here.
Yang's Status Report - #15 of 17
食肉大灰兔V5 (Aug 11)
Hi list,
Accomplishments
* Bug Fix: Npcap causes SYSTEM_SERVICE_EXCEPTION and
DRIVER_IRQL_NOT_LESS_OR_EQUAL BSoDs.
https://github.com/nmap/npcap/commit/3cf6086acab59496694e53cc37eeb12d7715d078
* Bug Fix: Fixed the bug that loopback packets sent by Npcap is malformed.
https://github.com/nmap/npcap/commit/4753a251be0556d31d813a19f08ba1bfa8eb2814
* New Feature: Integrated WSKTest code into Npcap driver, now Npcap can
send loopback packets...
Gyani's Status Report - #15 of 17
Gyanendra Mishra (Aug 10)
Hi,
After writing this post I realize there are too many links here. I hope it
passes the mailing list filter :P. Hope everyone had a fun defcon!
Accomplishments
* Refactored http-fetch and added support for files matching a specific
pattern. The script now allows you to download everything on a server,
download a particular file, or download files matching a specific pattern
depending on the "paths" argument.[1]
* Fixed a bug in...
Re: [NSE] KNX Gateway Discover Script
Niklaus Schiess (Aug 10)
Hi Daniel,
thanks again for the feedback. I fixed the issues, tested the script
again and pushed it to the GitHub repo [0]. Lets give it a try without
an attachment :)
Regards,
Niklaus
[0] https://github.com/takeshixx/knx-gateway-nse
Jiayi's Status Report - #15 of 17
Jiayi Ye (Aug 10)
Hi,
Accomplishments:
* Updated smb.lua. Added smb2_echo, which was
sent by a client to determine whether a server
is processing requests. Added smb2_query_directory_request, which was
sent by the client to
obtain a directory enumeration on a directory open. Added
smb2_delete_file, which was sent by
the client to delete file.
Updated description for smb2 library.
* Tested smb2 library. Set up a windows environment to test the smb2...
Re: [NSE] KNX Gateway Discover Script
Daniel Miller (Aug 10)
Niklaus,
Thanks, this is looking better! Since the list keeps dropping your
messages, you may want to just link to your Github repository, in case it
is the attachments that are looking suspicious. We'll try to get it sorted
out soon.
Speaking of sorting, the method you've used will not work to sort the
output table, unfortunately. Lua's table.sort [1] only handles sorting
array-style tables; it won't look at non-integer...
Gioacchino's status report #15 of 17
Gioacchino Mazzurco (Aug 10)
Hi!
This week I have been at Battlemesh, I have a brief meeting with my mentor
too, the event has been great and participants showed lot of interest in Nmap,
I have been sick (probably a food poisoning) for more than half of the week
(I am still in convalescence) so I haven't written code a part from the NSE
script I used to show in the presentation :(
Saturday I gave the talk about Nmap that was focused on how to write NSE
scripts,...
Andrew's Status Report - #15 of 17
Andrew Jason Farabee (Aug 10)
Hi everyone!
Accomplishments:
* Did some restructuring of nsock/src/proxy_http.c. It now uses
separate states for digest and basic authentication.
* Outlined creating a shared library between nsock and ncat for the
http parsing and the hashing protocols (RFC 2617) necessary for proxy
(and general) http authentication (thanks to d33tah and Daniel
Miller). This is after a lot of trial and error that included trying
to rewrite the parsing and...
[no subject]
hassan mohamed (Aug 10)
Version: 6.49BETA4
Traceback (most recent call last):
File "zenmapGUI\DiffCompare.pyo", line 203, in show_scan
File "zenmapGUI\DiffCompare.pyo", line 305, in get_nmap_output
AttributeError: 'NoneType' object has no attribute 'get_nmap_output'
Adding HTTP proxy authentication to nsock and avoiding code duplication
Jacek Wielemborek (Aug 10)
Hello,
Andrew is currently working on moving Ncat's HTTP proxy authentication
code to Nsock in order to add support authenticated proxychains for
programs using the Nsock interface. The thing is that it cannot just be
cut from Ncat and pasted into Nsock because Ncat would still need the
code for parsing the requests in listen mode. This means that there's
the risk of duplicating the parsing routines; the alternative I can
think of is...
Re: [NSE] KNX Gateway Discover Script
Daniel Miller (Aug 09)
Niklaus,
Thanks for taking my suggestions! There's still a bit of a problem
regarding the use of output tables: we need the output of subsequent runs
of the script to be identical in ordering. That's what
stdnse.output_table() provides. A regular Lua table will yield its keys in
an unpredictable order, except for integer keys (array-style tables). This
means that any place where you store result["label"] = value, the result...
Re: [NSE] smb-ls fixes and improvements
Pierre LALET (Aug 08)
Hi,
I have updated the nsedoc sections of the scripts as Henri has
suggested in a comment on a previous commit.
Henri: is it better now?
Re: [NSE] KNX Gateway Discover Script
Daniel Miller (Aug 08)
Niklaus,
This looks cool! Here are some comments:
1. Please convert the script to use structured output [1]. This is usually
a matter of changing some tables to stdnse.output_table() and then changing
lines like this:
search_response[1] = "IP address: "..knx_hpai_ip_address
into this:
search_response["IP address"] = knx_hpai_ip_address
2. Seems like we have unnecessary information in the output. I think the
Status part...
Re: [NSE] KNX Gateway Discover Script
Niklaus Schiess (Aug 07)
Hi,
thanks for the suggestion. I got two KNX gateways from different vendors
where I've tested the script. Sending a search request directly to those
showed that indeed one of the devices responded properly. However, the
other one does only respond to multicast packets.
So discover gateways according to the specification seems to be the more
reliable way. Thats because I think the script is fine like it is right
now. It's actually a...
Re: [NSE] KNX Gateway Discover Script
Michael T (Aug 07)
As an FYI, when Stephen Hilt and I were developing the
bacnet-discover-enumerate (
https://github.com/digitalbond/Redpoint/blob/master/BACnet-discover-enumerate.nse)
script at Digital Bond, we found something interesting...
While many times the specification 'said' we had to send a request to a
broadcast or multicast address, the devices themselves would ALSO respond
when we sent it directly to the IP Address of the device. Basically,...
[NSE] KNX Gateway Discover Script
Niklaus Schiess (Aug 07)
Howdy,
KNX is "...the worldwide STANDARD for all applications in home and
building control, ranging from lighting and shutter control to various
security systems, ...building control with a single, manufacturer
independent design and commissioning tool (ETS), with a complete set of
supported communication media (TP, PL, RF and IP) as well as a complete
set of supported configuration modes..."[1].
This script discovers KNX gateways...
Nmap Announce — Moderated list for the most important new releases and announcements regarding the Nmap Security Scanner and related projects. We recommend that all Nmap users subscribe.
Nmap 6.49BETA1 released! New scripts, new signatures, new ASCII art!
Fyodor (Jun 04)
Hi Folks. I'm happy to announce the release of Nmap 6.49BETA1. This
version has hundreds of improvements, including:
* 25 new NSE scripts (total is now 494)
* Integrated all of your latest OS detection and version/service detection
submissions (including IPv6). This allows Nmap to properly identify Linux
3.18, Windows 8.1, OS X 10.10, Android 5, etc. We now have more than 10,000
service detection signatures!
* Infrastructure...
Introducing the 2015 Nmap/Google Summer of Code Team!
Fyodor (May 07)
Hello everyone. Google has agreed to sponsor five amazing students to
spend this summer enhancing the Nmap Security Scanner and I'm proud to
introduce our 2015 team:
*Andrew Farabee* will be working to refactor parts of the Nmap codebase in
ways which enable more functionality while also improving performance and
hopefully easing code maintenance too! His first task involves adding a
SOCKS proxy name resolution feature to enable scanning...
Nmap Project Seeking Talented Programmers for Google Summer of Code
Fyodor (Mar 25)
Hi folks. I'm delighted to report that Nmap has been accepted by Google to
participate in this year's Summer of Code internship program. This
innovative and extraordinarily generous program provides $5,500 stipends to
college and graduate students anywhere in the world who spend the summer
improving Nmap from home! They gain valuable experience, get paid,
strengthen their résumés, and write code for millions of users. We're...
Nmap Project Seeking Talented Programmers for Google Summer of Code--Last Day to Apply!
Fyodor (Mar 20)
Hi folks. I'm delighted to report that Nmap has been accepted by Google to
participate in this year's Summer of Code internship program. This
innovative and extraordinarily generous program provides $5,500 stipends to
college and graduate students anywhere in the world who spend the summer
improving Nmap from home! They gain valuable experience, get paid,
strengthen their résumés, and write code for millions of users. We're...
Full Disclosure — A public, vendor-neutral forum for detailed discussion of vulnerabilities and exploitation techniques, as well as tools, papers, news, and events of interest to the community. The relaxed atmosphere of this quirky list provides some comic relief and certain industry gossip. More importantly, fresh vulnerabilities sometimes hit this list many hours or days before they pass through the Bugtraq moderation queue.
Stored XSS in iframe allows less privileged users to do almost anything an admin can (WordPress plugin)
dxw Security (Aug 12)
Details
================
Software: iframe
Version: 3.0
Homepage: http://wordpress.org/plugins/iframe/
Advisory report:
https://security.dxw.com/advisories/stored-xss-in-iframe-allows-less-privileged-users-to-do-almost-anything-an-admin-can/
CVE: Awaiting assignment
CVSS: 5.5 (Medium; AV:N/AC:L/Au:S/C:P/I:P/A:N)
Description
================
Stored XSS in iframe allows less privileged users to do almost anything an admin can
Vulnerability...
Reflected XSS in iframe allows unauthenticated users to do almost anything an admin can (WordPress plugin)
dxw Security (Aug 12)
Details
================
Software: iframe
Version: 3.0
Homepage: http://wordpress.org/plugins/iframe/
Advisory report:
https://security.dxw.com/advisories/reflected-xss-in-iframe-allows-unauthenticated-users-to-do-almost-anything-an-admin-can/
CVE: Awaiting assignment
CVSS: 5.8 (Medium; AV:N/AC:M/Au:N/C:P/I:P/A:N)
Description
================
Reflected XSS in iframe allows unauthenticated users to do almost anything an admin can
Vulnerability...
Blind SQL Injection in WP Symposium allows unauthenticated attackers to access sensitive data (WordPress plugin)
dxw Security (Aug 12)
Details
================
Software: WP Symposium
Version: 15.1
Homepage: https://wordpress.org/plugins/wp-symposium
Advisory report:
https://security.dxw.com/advisories/blind-sql-injection-in-wp-symposium-allows-unauthenticated-attackers-to-access-sensitive-data/
CVE: Awaiting assignment
CVSS: 6.4 (Medium; AV:N/AC:L/Au:N/C:P/I:N/A:P)
Description
================
Blind SQL Injection in WP Symposium allows unauthenticated attackers to access...
Stored XSS in Google Analytics by Yoast Premium allows privileged users to attack other users (WordPress plugin)
dxw Security (Aug 12)
Details
================
Software: Google Analytics by Yoast Premium
Version: 5.4.4
Homepage: https://yoast.com/wordpress/plugins/google-analytics/
Advisory report: https://security.dxw.com/advisories/xss-in-google-analytics-by-yoast-premium-by-privileged-users/
CVE: Awaiting assignment
CVSS: 5.5 (Medium; AV:N/AC:L/Au:S/C:P/I:P/A:N)
Description
================
Stored XSS in Google Analytics by Yoast Premium allows privileged users to attack...
CodoForum 3.3.1 Multiple SQL Injections
Curesec Research Team (Aug 12)
CodoForum 3.3.1: Multiple SQL Injection Vulnerabilities
Security Advisory – Curesec Research Team
http://blog.curesec.com/article/blog/CodoForum-331-Multiple-SQL-Injection-Vulnerabilities-42.html
1. Introduction
Affected Product: CodoForum 3.3.1
Fixed in: 3.4
Fixed Version Link:
https://bitbucket.org/evnix/codoforum_downloads/downloads/codoforum.v.3.4.build-19.zip
Vendor Contact: admin () codologic com...
CodoForum 3.3.1 Multiple Cross Site Scriptings
Curesec Research Team (Aug 12)
CodoForum 3.3.1 Multiple Cross Site Scriptings
Security Advisory – Curesec Research Team
Online-Reference
http://blog.curesec.com/article/blog/CodoForum-331-Multiple-Cross-Site-Scripting-Vulnerabilities-40.html
1. Introduction
Affected Product: CodoForum 3.3.1
Fixed in: 3.4
Fixed Version Link:
https://bitbucket.org/evnix/codoforum_downloads/downloads/codoforum.v.3.4.build-19.zip
Vendor Contact: admin () codologic...
BigTree CMS 4.2.3 Multiple Sql Injections
Curesec Research Team (Aug 12)
BigTree CMS 4.2.3: Multiple SQL Injection Vulnerabilities
Security Advisory – Curesec Research Team
Online-Reference:
http://blog.curesec.com/article/blog/BigTree-CMS-423-Multiple-SQL-Injection-Vulnerabilities-39.html
1. Introduction
Affected Product: BigTree CMS 4.2.3
Fixed in: 4.2.4
Fixed Version Link:
https://github.com/bigtreecms/BigTree-CMS/archive/4.2.3.zip
Vendor Contact: contribute ()...
BigTree CMS 4.2.3 Multiple Cross-Site-Scripting Vulnerabilities
Curesec Research Team (Aug 12)
BigTree CMS 4.2.3: Multiple Cross Site Scripting Vulnerabilities
Security Advisory – Curesec Research Team
Online Reference:
http://blog.curesec.com/article/blog/BigTree-CMS-423-Multiple-Cross-Site-Scripting-Vulnerabilities-38.html
1. Introduction
Affected Product: BigTree CMS 4.2.3
Fixed in: 4.2.4
Fixed Version Link:
https://github.com/bigtreecms/BigTree-CMS/archive/4.2.3.zip
Vendor Contact: contribute ()...
Re: Mozilla extensions: a security nightmare
Thomas D. (Aug 12)
Hi,
Mario Vilas wrote:
Correct.
OK, installing into %APPDATA% or %LOCALAPPDATA% will remove Windows' tampering protection.
I hope you are not arguing that because nowadays many application will install into %APPDATA% or %LOCALAPPDATA% they
became "safe" because they are so many?!
Remember how the thing with %APPDATA% and %LOCALAPPDATA% started/became mainstream: There was a small search corp. who
thought they need to develop...
php 7 use after free bug
牛保龙 (Aug 12)
i reported a use after free for php on hackerone.com,the bug :https://bugs.php.net/bug.php?id=70211.
Description: ------------ the Hash table is full, resize it,ZEND_HASH_IF_FULL_DO_RESIZE(ht),but if one elment is
already allocate in the old memery and re-allocate in the new memry and the var_hash struct also exists the old memery
for the element, it can cause a use after free when unserialize() function has r/R referer. my english is poor. i...
Thomson Reuters FATCA - Arbitrary File Upload
Etnies (Aug 12)
Title: Thomson Reuters FATCA - Arbitrary File Upload
Author: Jakub Palaczynski
Date: 10. June 2015
CVE: CVE-2015-5951
Affected software:
==================
All versions of Thomson Reuters FATCA below v5.2
Exploit was tested on:
======================
Thomson Reuters FATCA v5.1.0.30
Description:
============
The Thomson Reuters for FATCA solution enables organizations to comply with
the key requirements of both CRS and FATCA.[1]...
Thomson Reuters FATCA - Local File Inclusion
Etnies (Aug 12)
Title: Thomson Reuters FATCA - Local File Inclusion
Author: Jakub Pałaczyński
Date: 10. June 2015
CVE: CVE-2015-5952
Affected software:
==================
All versions of Thomson Reuters FATCA below v5.2
Exploit was tested on:
======================
Thomson Reuters FATCA v5.1.0.30
Description:
============
The Thomson Reuters for FATCA solution enables organizations to comply with
the key requirements of both CRS and FATCA.[1]...
CVE-2015-5699 - Cumulus Linux's Switch Configuration Tools Backend, clcmd_server, Vulnerable to Local Privilege Escalation
Gregory Pickett (Aug 12)
Title
===================
Cumulus Linux's Switch Configuration Tools Backend, clcmd_server, Vulnerable to Local Privilege Escalation
Summary
===================
Cumulus Linux's Switch Configuration Tools Backend, clcmd_server, is vulnerable to local privilege escalation via
Command Injection. Cumulus Linux’s clcmd_server, when receiving commands that end in user supplied labels, will
execute any other command appended to the end...
T Mobile Business - Client Side Cross Site Scripting Vulnerability
Vulnerability Lab (Aug 10)
Document Title:
===============
T Mobile Business - CS Cross Site Scripting Vulnerability
References (Source):
====================
http://www.vulnerability-lab.com/get_content.php?id=1566
Release Date:
=============
2015-08-10
Vulnerability Laboratory ID (VL-ID):
====================================
1566
Common Vulnerability Scoring System:
====================================
2.5
Product & Service Introduction:...
Pineapple autopwn script 2.3.0 or lower versions.
Electric Mind (Aug 08)
I have wrote PoC half a year ago, because i needed to try it on my Chinese router, and it still works on freshly
purchased pineapple devices. (hello from Defcon ;) )
And guys, it’s not a talk for the defcon, especially if you have done a botnet based on that shit… ;)
See ya tomorrow at WiFi village...
POC is below:
#!/usr/bin/env python
from random import choice
from urllib import urlencode
from httplib import HTTPConnection
settings = {...
Bugtraq — The premier general security mailing list. Vulnerabilities are often announced here first, so check frequently!
[slackware-security] mozilla-firefox (SSA:2015-219-01)
Slackware Security Team (Aug 10)
[slackware-security] mozilla-firefox (SSA:2015-219-01)
New mozilla-firefox packages are available for Slackware 14.1 and -current to
fix security issues.
Here are the details from the Slackware 14.1 ChangeLog:
+--------------------------+
patches/packages/mozilla-firefox-38.1.1esr-i486-1_slack14.1.txz: Upgraded.
This release contains security fixes and improvements.
For more information, see:...
[slackware-security] mozilla-nss (SSA:2015-219-02)
Slackware Security Team (Aug 10)
[slackware-security] mozilla-nss (SSA:2015-219-02)
New mozilla-nss packages are available for Slackware 14.0, 14.1, and -current
to fix security issues.
Here are the details from the Slackware 14.1 ChangeLog:
+--------------------------+
patches/packages/mozilla-nss-3.19.2-i486-1_slack14.1.txz: Upgraded.
This release contains security fixes and improvements.
For more information, see:...
[SECURITY] [DSA 3330-1] activemq security update
Moritz Muehlenhoff (Aug 10)
-------------------------------------------------------------------------
Debian Security Advisory DSA-3330-1 security () debian org
https://www.debian.org/security/ Moritz Muehlenhoff
August 07, 2015 https://www.debian.org/security/faq
-------------------------------------------------------------------------
Package : activemq
CVE ID : CVE-2014-3576
It was discovered...
QNAP crypto keys logged on unencrypted disk partition in world accessible files
Andreas Steinmetz (Aug 10)
Affected devices:
=================
Probably all QNAP devices running the QNAP modified 3.12.6 kernel with
firmware older than 4.1.4 Build 0804.
Verified on TS-453S Pro and TVS-471, both with Firmware 4.1.4 Build
0522.
Probably fixed with Firmware 4.1.4 Build 0804 (incriminating message
gone, though there is no notice by QNAP that this security problem did
ever exist or that is was fixed, no kernel source available for
verification)....
Device Inspector v1.5 iOS - Command Inject Vulnerabilities
Vulnerability Lab (Aug 10)
Document Title:
===============
Device Inspector v1.5 iOS - Command Inject Vulnerabilities
References (Source):
====================
http://www.vulnerability-lab.com/get_content.php?id=1558
Release Date:
=============
2015-08-07
Vulnerability Laboratory ID (VL-ID):
====================================
1558
Common Vulnerability Scoring System:
====================================
5.7
Product & Service Introduction:...
Ferrari - PHP CGI Argument Injection (RCE) Vulnerability
Vulnerability Lab (Aug 10)
Document Title:
===============
Ferrari - PHP CGI Argument Injection (RCE) Vulnerability
References (Source):
====================
http://www.vulnerability-lab.com/get_content.php?id=1562
Video: http://www.vulnerability-lab.com/get_content.php?id=1561
Vulnerability Magazine:
http://magazine.vulnerability-db.com/?q=articles/2015/08/07/ferraricom-simulationcenter-remote-code-execution-php-cgi-argument-injection
Release Date:
=============...
Thomson Reuters FATCA - Arbitrary File Upload
jakub . palaczynski (Aug 07)
Title: Thomson Reuters FATCA - Arbitrary File Upload
Author: Jakub Pałaczyński
Date: 10. June 2015
CVE: CVE-2015-5951
Affected software:
==================
All versions of Thomson Reuters FATCA below v5.2
Exploit was tested on:
======================
Thomson Reuters FATCA v5.1.0.30
Description:
============
The Thomson Reuters for FATCA solution enables organizations to comply with the key requirements of both CRS and...
Re: [FD] Mozilla extensions: a security nightmare
Teddy A PURWADI (Aug 07)
Fri, Aug 7, 2015.
2:26:54 PM.
Yes Please :-)
Thanks
cheers,
/tap
-----Original Message-----
From: Jakob Holderbaum <hi () jakob io>
Date: Fri, 7 Aug 2015 09:13:04
To: <bugtraq () securityfocus com>
Subject: Re: [FD] Mozilla extensions: a security nightmare
I want to stress the point made here.
Please continue the rather childish accusations *in private*.
[SECURITY] [DSA 3329-1] linux security update
Salvatore Bonaccorso (Aug 07)
-------------------------------------------------------------------------
Debian Security Advisory DSA-3329-1 security () debian org
https://www.debian.org/security/ Salvatore Bonaccorso
August 07, 2015 https://www.debian.org/security/faq
-------------------------------------------------------------------------
Package : linux
CVE ID : CVE-2015-1333 CVE-2015-3212...
Re: [FD] Mozilla extensions: a security nightmare
Jakob Holderbaum (Aug 07)
I want to stress the point made here.
Please continue the rather childish accusations *in private*.
Re: [FD] Mozilla extensions: a security nightmare
Reindl Harald (Aug 07)
Am 06.08.2015 um 21:33 schrieb Stefan Kanthak:
"bash /home/whatever/binary" and you are done
any attacker which don't know this would not come far at all
RE: [FD] Mozilla extensions: a security nightmare
Frank Waarsenburg (Aug 07)
Time to unsubscribe from Bugtraq. I follow that list to be informed of vulnerabilities, not to get spammed by fighting
ego's. Get a life.
___________________________________
Frank Waarsenburg
Chief Information Security Officer
RAM Infotechnology
-----Original Message-----
From: Steve Friedl [mailto:steve () unixwiz net]
Sent: vrijdag 7 augustus 2015 8:17
To: 'Stefan Kanthak'; 'Mario Vilas'
Cc:...
RE: [FD] Mozilla extensions: a security nightmare
Steve Friedl (Aug 07)
sh*tt*ng in your pants because that's where your *ssh*l* happens to be!
Here, let me fix this for you:
-----Original Message-----
From: Stefan Kanthak [mailto:stefan.kanthak () nexgo de]
Sent: Thursday, August 06, 2015 12:33 PM
To: Mario Vilas
Cc: bugtraq; fulldisclosure
Subject: Re: [FD] Mozilla extensions: a security nightmare
"Mario Vilas" <mvilas () gmail com> wrote:
I recommend to revisit elementary school and start...
Re: [FD] Mozilla extensions: a security nightmare
Stefan Kanthak (Aug 07)
"Mario Vilas" <mvilas () gmail com> wrote:
I recommend to revisit elementary school and start to learn reading!
http://seclists.org/bugtraq/2015/Aug/8
| JFTR: current software separates code from data in virtual memory and
| uses "write xor execute" or "data execution prevention" to
| prevent both tampering of code and execution of data.
| The same separation and protection can and of...
Re: [FD] Mozilla extensions: a security nightmare
Stefan Kanthak (Aug 06)
"Mario Vilas" <mvilas () gmail com> wrote:
Right. "W^X" obviously doesnt make sense to YOU.
Who wrote anything about "privilege escalation" here?
Burn your strawmen somewehre else.
Stefan
PS: STOP top-posting, NOW!
Security Basics — A high-volume list which permits people to ask "stupid questions" without being derided as "n00bs". I recommend this list to network security newbies, but be sure to read Bugtraq and other lists as well.
CFP: 2nd EECEA2015 - International Conference on Electrical, Electronics, Computer Engineering and their Applications
Conference Updates (Nov 04)
The Second International Conference on Electrical, Electronics, Computer
Engineering and their Applications (EECEA2015)
University of Perpetual Help System Dalta, Las Piñas - Manila,
Philippines
February 12-14, 2015
http://sdiwc.net/conferences/eecea2015/
All registered papers will be included in SDIWC Digital Library.
===========================================================
The conference aims to enable researchers build connections...
Advanced Android & iOS Hands-on Exploitation Training at Toorcon San Diego
Aditya Gupta (Oct 03)
Hello everyone,
I'm Aditya from Attify. I'm glad to announce that, I'll be running a
2-day class on Android,
iOS and ARM Hands-on Exploitation at Toorcon 2014 in San Diego this
October. The training will focus on a hands-on approach to find vulns
and exploit them on mobile applications as well as the platform as
well.
All the exercises will be performed on a customised Mobile
Exploitation training distro and on a set of...
Penetration Testing — While this list is intended for "professionals", participants frequenly disclose techniques and strategies that would be useful to anyone with a practical interest in security and network auditing.
SpiderFoot 2.5.0 released
Steve Micallef (Aug 04)
Hi all,
SpiderFoot 2.5.0 is now available, with more modules, added
functionality and bug fixes since 2.3.0 was last announced on this list.
SpiderFoot is an open source intelligence gathering / reconnaissance
tool utilising over 40 data sources and methods, all driven through a
snappy web UI.
Here's what's new since 2.3.0..
- *8* new modules:
- Darkweb search (Onion.city)
- DuckDuckGo
- Wayback...
Arachni Framework v1.2 & WebUI v0.5.7.1 have been released (Web Application Security Scanner)
Tasos Laskos (Jul 17)
Hey folks,
There's a new version of Arachni, a modular and high-performance Web Application Security Scanner.
The highlights of this release are:
* Many optimizations to reduce RAM and CPU consumption.
* SSL interception for websites with HSTS.
* Support for tracking jQuery delegated events.
* Support for custom waiting rules prior to page loads, based on CSS selectors.
* Many new web framework fingerprinters, as well as improvements to...
Ruxcon 2015 Final Call For Presentations
cfp (Jul 06)
Ruxcon 2015 Final Call For Presentations
Melbourne, Australia, October 24-25
CQ Function Centre
http://www.ruxcon.org.au
The Ruxcon team is pleased to announce the first round of Call For Presentations for Ruxcon 2015.
This year the conference will take place over the weekend of the 24th and 25th of October at the CQ Function Centre,
Melbourne, Australia.
The deadline for submissions is the 15th of September, 2015.
.[x]. About Ruxcon .[x]....
Info Security News — Carries news items (generally from mainstream sources) that relate to security.
BlackHat 2015: Industrial hacking: the untold story
InfoSec News (Aug 11)
http://www.computerweekly.com/news/4500251365/BlackHat-2015-Industrial-hacking-the-untold-story
By Warwick Ashford
Security Editor
ComputerWeekly.com
10 Aug 2015
Hacking of industrial plants for extortion is one of the biggest untold
stories because such attacks are seldom reported, according to Marina
Krotofil, a researcher at Hamburg University of Technology.
Hackers have been penetrating industrial control systems of utility
companies on...
Hacker Cracks Satellite Communications Network
InfoSec News (Aug 11)
http://www.defenseone.com/technology/2015/08/hacker-cracks-satellite-communications-network/118915/
By Patrick Tucker
DefenseOne.com
August 6, 2015
LAS VEGAS, Nev. -- A researcher says he can eavesdrop on - and even alter
- data flowing through a satellite network operated by Globalstar, which
provides communications services and equipment to militaries, oil
companies, and many other organizations. “I can say with 100-percent
confidence I...
U.S. to Charge That Hackers Tapped Early Deal News
InfoSec News (Aug 11)
http://www.nasdaq.com/article/us-to-charge-that-hackers-tapped-early-deal-news-20150811-00023
By Dow Jones Business News
August 11, 2015
U.S. authorities are preparing to unseal sweeping charges as early as
Tuesday against a group of traders and computer hackers who allegedly
schemed to get early access to press releases about mergers and
acquisitions and trade on them before the deals were made public, people
familiar with the matter....
No, You Really Can’t
InfoSec News (Aug 11)
https://blogs.oracle.com/maryanndavidson/entry/no_you_really_can_t
Mary Ann Davidson Blog
By User701213-Oracle
Aug 10, 2015
I have been doing a lot of writing recently. Some of my writing has been
with my sister, with whom I write murder mysteries using the nom-de-plume
Maddi Davidson. Recently, we’ve been working on short stories, developing
a lot of fun new ideas for dispatching people (literarily speaking, though
I think about...
Severe weaknesses in Android handsets could leak user fingerprints
InfoSec News (Aug 11)
http://arstechnica.com/security/2015/08/severe-weaknesses-in-android-handsets-could-leak-user-fingerprints/
By Dan Goodin
Ars Technica
Aug 10, 2015
HTC and Samsung have patched serious vulnerabilities in some of their
Android phones that made it possible for malicious hackers to steal user
fingerprints. The researchers who discovered the flaws said that many more
phones from all manufacturers may be susceptible to other types of...
There’s no code of ethics to govern digit al forensics – and we need one
InfoSec News (Aug 11)
https://theconversation.com/theres-no-code-of-ethics-to-govern-digital-forensics-and-we-need-one-45755
By John J Sloan, III
The Conversation
August 10, 2015
Let me begin with a disclaimer: I am neither a digital forensics
practitioner nor do I play one on television.
I am, however, a professor in, and former chair of, an academic department
at a research university that houses a graduate program in computer
(digital) forensics I helped...
Random numbers aren't, says infosec boffin
InfoSec News (Aug 11)
http://www.theregister.co.uk/2015/08/11/your_numbers_arent_random_says_infosec_boffin/
By Richard Chirgwin
The Register
11 Aug 2015
The randomness (or rather, lack thereof) of pseudo-random number
generators (PRNGs) is a persistent pain for those who work at the low
layers of cryptography.
Security researcher Bruce Potter, whose activity in the field stretches
back more than a decade, when he demonstrated war-driving using Bluetooth,
says...
Imploding Barrels and Other Highlights From Hackfest DefCon
InfoSec News (Aug 11)
http://www.wired.com/2015/08/highlights-from-defcon-2015/
By Kim Zetter
Security
Wired.com
08.10.15
VISITING LAS VEGAS can feel a bit like being a metal sphere in a pinball
machine — you’re tossed from bright lights to blaring shows and back again
until you eventually (hopefully) emerge out a hole at your home airport.
When you visit Vegas with a swarm of hackers and security researchers, the
dizziness gets amped up tenfold and can be...
Hacking Critical Infrastructure: A How-To Guide
InfoSec News (Jul 31)
http://www.defenseone.com/technology/2015/07/hack-critical-infrastructure/118756/
By Patrick Tucker
Defense One
July 31, 2015
Cyber-aided physical attacks on power plants and the like are a growing
concern. A pair of experts is set to reveal how to pull them off — and how
to defend against them.
How easy would it be to pull off a catastrophic cyber attack on, say, a
nuclear power plant? At next week’s Black Hat and Def Con cybersecurity...
Researcher says he can hack GM’s OnStar ap p, open vehicle, start engine
InfoSec News (Jul 31)
http://venturebeat.com/2015/07/30/researcher-says-can-hack-gms-onstar-app-open-vehicle-start-engine/
By Bernie Woodall in Detroit
and Jim Finkle in Boston
Reuters
July 30, 2015
BOSTON/DETROIT (Reuters) – A researcher is advising drivers not to use a
mobile app for the General Motors OnStar vehicle communications system,
saying hackers can exploit a security flaw in the product to unlock cars
and start engines remotely.
“White-hat”...
Intel Assessment: Weak Response to Breaches Will Lead to More Cyber Attacks
InfoSec News (Jul 31)
http://freebeacon.com/national-security/intel-assessment-obama-admin-response-to-cyber-encourages-more-attacks/
By Bill Gertz
Follow @BillGertz
Washington Free Beacon
July 28, 2015
The United States will continue to suffer increasingly damaging cyber
attacks against both government and private sector networks as long as
there is no significant response, according to a recent U.S. intelligence
community assessment.
Disclosure of the...
Federal Employee May Have Been Cooking Meth at Government Agency’s Campus
InfoSec News (Jul 31)
http://www.govexec.com/oversight/2015/07/fbi-and-congress-are-investigating-if-meth-lab-exploded-federal-building/118751/
By Eric Katz
Govexec.com
July 30, 2015
A federal employee may have recently learned the hard way that cooking
meth should be left to the chemistry experts.
The FBI and a congressional committee are investigating whether a federal
worker was manufacturing methamphetamine in a federal building after a
room exploded earlier...
Critical BIND denial-of-service flaw could disrupt large portions of the Internet
InfoSec News (Jul 31)
http://www.computerworld.com/article/2955005/security/critical-bind-denialofservice-flaw-could-disrupt-large-portions-of-the-internet.html
By Lucian Constantin
IDG News Service
July 30, 2015
Attackers could exploit a new vulnerability in BIND, the most popular
Domain Name System (DNS) server software, to disrupt the Internet for many
users.
The vulnerability affects all versions of BIND 9, from BIND 9.1.0 to BIND
9.10.2-P2, and can be...
United Airlines hacked by China-linked group suspected of previous US attacks
InfoSec News (Jul 30)
http://www.scmp.com/tech/enterprises/article/1845102/united-airlines-hacked-china-linked-group-believed-responsible
Bloomberg
30 July, 2015
The hackers who stole data on tens of millions of US insurance holders and
government employees in recent months breached another big target at
around the same time -- United Airlines.
United, the world’s second-largest airline, detected an incursion into its
computer systems in May or early June,...
N. Korea contacts Italian firm for hacking software: S. Korean lawmaker
InfoSec News (Jul 30)
http://english.yonhapnews.co.kr/full/2015/07/30/41/1200000000AEN20150730005700315F.html
Yonhap
2015/07/30
SEOUL, July 30 (Yonhap) -- An Italian cybersecurity firm testified that
North Korea had contacted the company to purchase hacking software
programs, a South Korean opposition lawmaker said Thursday.
South Korea's top intelligence agency recently admitted to purchasing
similar software from the Milan-based Hacking Team, triggering...
Firewall Wizards — Tips and tricks for firewall administrators
Re: Interesting infographic on the history of firewalls
Darden, Patrick (Aug 04)
I did something similar to this in 1994-5 at Harvard using a version of rot-13 and icmp. Seriously. And it worked.
:-)
--p
-----Original Message-----
From: firewall-wizards-bounces () listserv cybertrust com [mailto:firewall-wizards-bounces () listserv cybertrust com]
On Behalf Of Marcus J. Ranum
Sent: Saturday, July 26, 2014 11:39 AM
To: Firewall Wizards Security Mailing List
Subject: [EXTERNAL]Re: [fw-wiz] Interesting infographic on the...
Re: Interesting infographic on the history of firewalls
Marcus J. Ranum (Aug 01)
Claudio Telmon wrote:
When I was at TIS, in 199?2, I set up Onions' tunnel driver and a couple
shell scripts that uuencoded the packets coming out of the tunnel, and
emailed them to another system user with a .forward file that uudecoded
the packets and injected them into a peer tunnel. With that setup, and its
opposite on both machines, I was able to NFS mount filesystems across
a secure mail guard. (Hint: if you're doing your own...
Re: Interesting infographic on the history of firewalls
Marcus J. Ranum (Aug 01)
It hasn't happened, yet.
mjr.
Web App Security — Provides insights on the unique challenges which make web applications notoriously hard to secure, as well as attack methods including SQL injection, cross-site scripting (XSS), cross-site request forgery, and more.
SpiderFoot 2.5.0 released
Steve Micallef (Aug 02)
Hi all,
SpiderFoot 2.5.0 is now available, with more modules, added
functionality and bug fixes since 2.3.0 was last announced on this list.
SpiderFoot is an open source intelligence gathering / reconnaissance
tool utilising over 40 data sources and methods, all driven through a
snappy web UI.
Here's what's new since 2.3.0..
- *8* new modules:
- Darkweb search (Onion.city)
- DuckDuckGo
- Wayback...
Arachni Framework v1.2 & WebUI v0.5.7.1 have been released (Web Application Security Scanner)
Tasos Laskos (Jul 17)
Hey folks,
There's a new version of Arachni, a modular and high-performance Web Application Security Scanner.
The highlights of this release are:
* Many optimizations to reduce RAM and CPU consumption.
* SSL interception for websites with HSTS.
* Support for tracking jQuery delegated events.
* Support for custom waiting rules prior to page loads, based on CSS selectors.
* Many new web framework fingerprinters, as well as improvements to...
CFP: Passwords 2015, Dec 7-9, Cambridge, UK
Per Thorsheim (Jul 13)
=========================================================================
Passwords 2015
The 9th International Conference on Passwords
7, 8, 9 December 2015
University of Cambridge, United Kingdom
http://www.cl.cam.ac.uk/events/passwords2015/
https://passwordscon.org/
=========================================================================
The Passwords conference was launched in 2010 as a response to the
lack of robustness and usability of...
Ruxcon 2015 Final Call For Presentations
cfp (Jul 06)
Ruxcon 2015 Final Call For Presentations
Melbourne, Australia, October 24-25
CQ Function Centre
http://www.ruxcon.org.au
The Ruxcon team is pleased to announce the first round of Call For Presentations for Ruxcon 2015.
This year the conference will take place over the weekend of the 24th and 25th of October at the CQ Function Centre,
Melbourne, Australia.
The deadline for submissions is the 15th of September, 2015.
.[x]. About Ruxcon .[x]....
Whitepaper: RPO exploitation techniques
Takeshi Terada (Jul 01)
Dear all,
MBSD released a whitepaper on RPO (Relative Path Overwrite) attack techniques.
http://www.mbsd.jp/Whitepaper/rpo.pdf
TOC
1. Introduction
2. Path manipulation techniques
2.1. Loading another file on IIS/ASP.NET
2.2. Loading another file on Safari/Firefox
2.3. Loading another file on WebLogic/IE
2.4. Loading file with query string on WebLogic+Apache
2.5. Attack possibility in other environments
3. Forcing...
t2'15: Call for Papers 2015 (Helsinki / Finland)
Tomi Tuominen (Jun 01)
#
# t2'15 - Call For Papers (Helsinki, Finland) - October 29 - 30, 2015
#
Why spend your valuable conference time in the longest lines you have seen in your life, getting a sun burn or totally
lost in the canals with your rental boat, being deprived of chewing gum or waking up in Nong Palai without any
recollection how you got there? Helsinki offers you the safe and comfortable low-temperature alternative with a chance
of first snow....
hardwear.io - Hardware Security Conference Call for Papers
Hardwear Team (May 29)
Dear Hackers and Security Gurus,
hardwear is seeking innovative research on hardware security. If you
have done interesting research on attacks or mitigation on any
Hardware and want to showcase it to the security community, just
submit your research paper. Please find all the relevant details for
the submission below.
About hardwear.io
----------------------------
Somewhere in the mid of last year, amidst all the news and concerns
surrounding...
SQL Injection within popular Magento blog extension (CVE-2015-3428)
AppCheck Advisories (May 29)
Background
======================
The aheadWorks Blog extension for Magento prior to version 1.3.10 is vulnerable to a critical SQL Injection security
flaw. A remote unauthenticated attacker could exploit this vulnerability to take complete control of the affected
Magento server and database. With almost 80,000 downloads at the time of writing, the affected component is the most
popular blog component available via Magento Connect.
Advisory...
Re: Call for Papers: RAID 2015
Skander Iversen (May 28)
Dear colleagues,
deadline to RAID 2015 has been extended to June 5th.
We kindly encourage to consider submitting your research work there.
Best regards,
sk
This list is sponsored by Cenzic
--------------------------------------
Let Us Hack You. Before Hackers Do!
It's Finally Here - The Cenzic Website HealthCheck. FREE.
Request Yours Now!
http://www.cenzic.com/2009HClaunch_Securityfocus
--------------------------------------
Breakpoint 2015 Call For Presentations
cfp (May 18)
Breakpoint 2015 Call For Papers
Melbourne, Australia, October 22th-23th
Intercontinental Rialto
http://www.ruxconbreakpoint.com
.[x]. Introduction .[x].
We are pleased to announce Call For Presentations for Breakpoint 2015.
Breakpoint showcases the work of expert security researchers from around the
world on a wide range of topics. This conference is organised by the Ruxcon
team and offers a specialised security conference to complement...
44CON CFP Open
Steve (May 13)
44CON London is the UK's largest combined annual Security Conference and Training event. Taking place on the evening of
the 9th and all day on the 10th and 11th of September at the ILEC Conference Centre near Earls Court, London, we will
have a fully dedicated conference facility, including secure wi-fi with high bandwidth Internet access, catering,
private bar and daily Gin O’Clock break.
_____ _____...
Call for Papers: RAID 2015
Skander Iversen (May 11)
Dear colleagues,
I would like to announce the following CFP.
Please kindly consider submitting to this conference.
This year's RAID will take in marvelous Kyoto, Japan.
-----------------------------------------
RAID 2015
Kyoto, Japan, November 2-4, 2015
http://www.raid2015.org/
Call for Papers
---------------
The 18th International Symposium on Research in Attacks, Intrusions and Defenses
(RAID 2015) aims at bringing together leading...
Arachni Framework v1.1 & WebUI v0.5.7 have been released (Web Application Security Scanner)
Tasos Laskos (May 01)
Hey folks,
There's a new version of Arachni, an Open Source, modular and high-performance
Web Application Security Scanner Framework.
The highlights of this release are:
* More sensible default options.
* Approximately 7-fold performance increase (YMMV depending on webapp characteristics).
* Support for JSON and XML input vectors.
* Overhauled custom-404 detection heuristics (addresses some edge-case false-positives).
* HTTP updates:
*...
whitepaper: Identifier based XSSI attacks
Takeshi Terada (Apr 21)
Hello list members,
We released a new technical whitepaper titled:
"Identifier based XSSI attacks"
URL:
http://www.mbsd.jp/Whitepaper/xssi.pdf
Summary:
Some new attack techniques and browser vulnerabilities regarding XSSI
(Cross-Site Script Inclusion) are explained. In the attacks, a method
of treating data as a client side script's identifier was employed to
steal the cross-origin data such as CSV, JSON and so on.
Relevant CVE...
Ruxcon 2015 Call For Presentations
cfp (Apr 13)
Ruxcon 2015 Call For Presentations
Melbourne, Australia, October 24-25
CQ Function Centre
http://www.ruxcon.org.au
The Ruxcon team is pleased to announce the first round of Call For Presentations for Ruxcon 2015.
This year the conference will take place over the weekend of the 24th and 25th of October at the CQ Function Centre,
Melbourne, Australia.
The deadline for submissions is the 30th of June, 2015.
.[x]. About Ruxcon .[x].
Ruxcon is...
Daily Dave — This technical discussion list covers vulnerability research, exploit development, and security events/gossip. It was started by ImmunitySec founder Dave Aitel and many security luminaries participate. Many posts simply advertise Immunity products, but you can't really fault Dave for being self-promotional on a list named DailyDave.
Re: The old speak: Wassenaar, Google, and why Spender is right
Michal Zalewski (Aug 05)
To be perfectly clear, I actually strongly agree that indiviual bugs
don't deserve PR releases, media packets, and flashy conference
presentations. All that is just a product of human nature and a couple
of twisted incentives.
At the same time, I don't subscribe to the absolutist view that
vulnerabilities don't matter, chiefly because I see ample evidence of
such findings making developers more interested in security and
improving...
Re: The old speak: Wassenaar, Google, and why Spender is right
Michal Zalewski (Aug 05)
I am fairly confident that many core components that we depend on have
gotten a lot harder to compromise over the years; we are obviously not
at a point where there are no bugs left (and we're certainly not at a
point where optimal design practices or mitigation frameworks are
bulletproof, either), but at least subjectively, I feel that at any
given time, far fewer people would be able to compromise my web server
than in the 90s, and far...
Re: The old speak: Wassenaar, Google, and why Spender is right
Michal Zalewski (Aug 02)
To be very frank... I think you're a bit guilty of the same
oversimplification that you attribute to the 0-day crowds :-)
Containment and detection matters. So does proper system design. And
yup, every enterprise should plan for getting owned, instead of
assuming that the AV software on their workstations will be able to
stop bad guys in their tracks.
But squashing bugs matters, too - not on an individual scale, but
because all other...
The old speak: Wassenaar, Google, and why Spender is right
Bas Alberts (Aug 02)
This will be a long and ranty one as well as the first DD post I've made
in a non-Immunity capacity (I think).
So anyone that knows me on any personal level knows that I'm a non
disclosure kind of guy. Now I could get into the why and how, but what
it really boils down to is that I subscribe to a fairly peculiar belief
system in which freedom and security are, generally speaking, mutually
exclusive.
I think that in an effort to...
Re: Remember The Titans
Ben Hawkes (Aug 01)
Perfect timing! I'd encourage everyone to go and be distracted by Mateusz'
just-released blog post:
http://googleprojectzero.blogspot.com/2015/07/one-font-vulnerability-to-rule-them-all.html
As far as distractions go, I'm really proud of the work that Mateusz has
done on fonts recently, as it exactly encapsulates everything that Project
Zero is about: cutting edge attack research on high priority targets
performed in the public...
Re: Remember The Titans
Andreas Lindh (Jul 31)
I don't want to come off as some Google fanboi or anything, and I
don't always agree with P0's methods, but Google's business model
pretty much starts and ends with people using the internet (and not
just Google's own services). Making (or appearing to make, whatever
your opinion is) the internet safer by finding and getting bugs fixed
seems like a pretty good start in that regard.
Andreas
Re: Remember The Titans
Michal Zalewski (Jul 31)
Interestingly, history sorta repeats itself:
https://lwn.net/Articles/6137/
Now... while I generally agree with you that some of the
most-publicized work is usually just a distraction and that it gets
picked up by the press based primarily on how much effort is put into
marketing the research and whether it superficially touches one of the
"cool" topics (IoT, mobile, privacy), this one snippet caught my eye:
While folks tend to have...
Remember The Titans
Dave Aitel (Jul 31)
I went back a couple days ago and re-read the latest Qualys exploit, as you
should: http://seclists.org/oss-sec/2015/q3/185 . "Hi, here is a program
that uses RLIMIT_FSIZE to like, own all the systems you probably have in
your enterprise!" Unix is neat!
But equally important is the Qihoo360 talk from Syscan 15. This is
available here: https://www.youtube.com/watch?v=5imoFfjZjx0 . Notice how
they beat up all of Microsoft's very...
"Technical Keynotes and Invited Talks"
Dave Aitel (Jul 28)
https://vimeo.com/album/3416096/video/130242081
So last year the INFILTRATE OpenCFP process worked flawlessly. You don't
get different talks than you would have picked using some really complex
spreadsheet and voting system, like most conferences do, than by using an
OpenCFP and having the public choose what they want to see. And of course,
we don't even validate that the people voting are also coming to the
conference, but it...
Getting Learned Up
Dave Aitel (Jul 27)
Right now in Columbia we have some intrepid students going through our
Client-Side and Ring0 exploitation class. But if you are not sucking
down the firehose that is an Immunity Training, taught by Lurene and
Facundo who have trouble blinking without seeing a WinDBG frameset on
the back of their eyelids, then you probably are like "I wish I knew more."
And lo and behold: INFILTRATE Videos are being released today. Boom!
HERE THEY ARE:...
An experiment...gone right.
Dave Aitel (Jul 21)
So I wanted to thank all the Anonymous and non-anonymous people (esp.
Scott Arciszewski aka @voodooKobra) who helped me write the Immunity BIS
comments yesterday. It's a pretty amazing testimony to both our
community and technology that you can literally crowdsource via a Google
Doc a process like that, and come out far better, far faster, than any
team in a room could do so alone.
This article has a roundup of some of the comments....
The Crypto Summit and "Just say no"
Dave Aitel (Jul 21)
(this is long and dry, sorry in advance, but I felt it was impt stuff).
So last week in DC I attended the Crypto Summit
<https://www.accessnow.org/page/content/crypto-summit/>, put together by
"Access". It was a series of panels, one of which was an entertaining
bloodbath. Watch that one here: https://youtu.be/SZSr9Ao8zBY . This one
as well had some funny moments:https://youtu.be/A0OotbJoGSg
<https://youtu.be/A0OotbJoGSg>...
Re: BIS Cyber Regulations
James Gannon (Jul 20)
My commerts are posted here: http://www.regulations.gov/#!documentDetail;D=BIS-2015-0011-0085
And in blog post form here: http://www.netgov.ch/wassenaar-comments/
Like Dave I totally encourage anyone to send a comment, no matter how small, this is important for the future of our
industry.
J
-----Original Message-----
From: dailydave-bounces () lists immunityinc com [mailto:dailydave-bounces () lists immunityinc com] On Behalf Of Dave
Aitel...
BIS Cyber Regulations
Dave Aitel (Jul 20)
Like many people, today I'm sending some fairly long comments about the
new "cyber regulations" coming out of the Commerce Dept. You can too!
And they don't have to be long. All you have to do is send a friendly
email as they suggest:
This link will give you easy instructions....
Capstone disassembly engine 3.0.4 is out!
Nguyen Anh Quynh (Jul 20)
Greetings,
We are excited to announce version 3.0.4 of Capstone disassembly framework!
This stable release fixes some potential security issues in the core, so
existing users are strongly recommended to upgrade.
Summary of important changes in v3.0.4:
- Fixed memory corruption bugs of X86, Arm, Mips, PowerPC & XCore
architectures.
- Properly handle some X86 instructions: OUT, SSE.
- Improve Python binding with more installation options.
-...
PaulDotCom — General discussion of security news, research, vulnerabilities, and the PaulDotCom Security Weekly podcast.
Re: [Security Weekly] cheap hosting
Robin Wood (Sep 23)
Resurrecting an old thread but they now have an affiliate program and I can
issue my own codes so:
20% off all servers AqUVYbUXag
50% off all big dog (whatever that is) 7E9YRUzEZy
After a month with them, their tech support is OK but not great, the server
has stayed up and not had any problems.
Robin
Re: [Security Weekly] projecting in a bight space
Jeremy Pommerening (Aug 28)
I would look for a projector with at least 6000 ANSI Lumens or better. A darker screen (grey) may also help.
Jeremy Pommerening
________________________________
From: Robin Wood <robin () digi ninja>
To: Security Weekly Mailing List <pauldotcom () mail securityweekly com>
Sent: Sunday, August 3, 2014 3:42 AM
Subject: [Security Weekly] projecting in a bight space
I've been looking at the venue for next year's...
[Security Weekly] Two Firefox security bugs related to HTTPS
ffbugishere (Aug 17)
Hello world!
We need votes for security bugs!
Adding "Security Exception" for self-signed HTTPS sites cannot be done
permanently
https://bugzilla.mozilla.org/show_bug.cgi?id=1050100
Firefox 31 doesn't supports the industry recommended best HTTPS
ciphers
https://bugzilla.mozilla.org/show_bug.cgi?id=1051210
Other browsers should have the same bugs fixed..
p.s.: We are not related to this group, but we think they worth a
penny...
Re: [Security Weekly] Java and Flash decompilers
Will Metcalf (Aug 05)
JPEXS is very nice for flash IMHO.
http://www.free-decompiler.com/flash/
Regards,
Will
Re: [Security Weekly] Java and Flash decompilers
Bradley McMahon (Aug 05)
I've used flare before to pull apart a flash site for a client.
http://www.nowrap.de/flare.html
-Brad
Re: [Security Weekly] SecurityCenter alternative
Steven McGrath (Aug 04)
SC certainly isn’t cheap (as a former SC customer that moved over to Tenable I can attest to that) however I can point
out that the data aggregation, trending, and custom reporting were huge wins in my book. I guess its a time/money
trade-off. How much time do you want to spend either cobbling together a tool or manually aggregating the data when
there is another tool already out there that can do it out of the box.
I can speak in more...
Re: [Security Weekly] Java and Flash decompilers
S. White (Aug 04)
A few I've used in the past:
JAD - http://varaneckas.com/jad/ , http://en.wikipedia.org/wiki/JAD_(JAva_Decompiler)
HP SWFscan
Adobe SWF investigator http://labs.adobe.com/technologies/swfinvestigator/
________________________________
From: Robin Wood <robin () digi ninja>
To: Security Weekly Mailing List <pauldotcom () mail securityweekly com>
Sent: Monday, August 4, 2014 5:54 AM
Subject: [Security Weekly] Java and...
[Security Weekly] DoFler @ BSidesLV
Steven McGrath (Aug 04)
This will be the 3rd year that DoFler (the Dashboard of Fail) will be at BSidesLV. This year I wrote a new spiffy
interface for maximum trolling. Let’s be honest now, everyone loves to surf for various forms of horrible on the
internet at cons :D. Also added this year is a little vulnerability analysis (using Tenable’s PVS). Every year I try
to improve it a bit based on everyone’s input, and am always welcome to more feedback.
DB...
Re: [Security Weekly] cheap hosting
Robin Wood (Aug 04)
Already sorted but thanks for the info.
Re: [Security Weekly] Java and Flash decompilers
Nathan Sweaney (Aug 04)
Here are a few others I've used with varying success in the past:
SWFInvestigator - http://labs.adobe.com/technologies/swfinvestigator/
SWFScan - from Rafal Los at HP, though the link has been deleted. (Careful,
I've seen trojaned copies online.)
Re: [Security Weekly] SecurityCenter alternative
Paul Asadoorian (Aug 04)
Thanks all for the informative discussion!
I know, I'm jumping in late, some closing thoughts on the subject:
- SecurityCenter has the unique advantage of consolidating plugin
updates, meaning you could have hundred of Nessus scanners deployed in
your organization, and the scanners get the plugin feed from your
SecurityCenter system. The removes the requirement of Internet access
(From the scanners), and greatly eases the administration...
Re: [Security Weekly] SecurityCenter alternative
k41zen (Aug 04)
Thanks for all of your help.
We are in discussions with our Tenable contact about solutions for this issue. They’ve helped me out by enabling me to
move forward to at least deploy this into a Pre-Production environment but the costs of SC are a massive stumbling
block; hence my question about something else. Appreciate we have a big Nessus fan base here of which I am a member
too, but just wondered what could be wrapped around it.
I’ll...
Re: [Security Weekly] SecurityCenter alternative
Adrien de Beaupre (Aug 04)
Hi,
I have also written a series of script to collect data from tools such as
nmap and nessus to import into MySQL called OSSAMS:
http://www.ossams.com/wp-content/uploads/2011/10/ossams-parser-SecTor-2011.zip
That leaves report writing as a series of SQL queries.
I also have a series of scripts to kick off scans, as well as a command
like XML-RPC nessus client in python if anyone is interested.
Cheers,
Adrien
Re: [Security Weekly] cheap hosting
sec list (Aug 04)
Hey Robin,
If you're still looking, might want to try out getclouder.com - they
spin up Linux containers in 5 seconds and use distributed storage, which
is pretty awesome. It's still in beta, so they offer 3 months free
service, but it has been pretty stable so far from my experience.
[Security Weekly] Java and Flash decompilers
Robin Wood (Aug 04)
Hi
I'm trying to put together a list of tools for decompiling Flash and Java
apps. From asking on another list I already have:
Java
JD-GUI
Java Decompiler http://jd.benow.ca/jd-gui/downloads/jd-gui-0.3.6.windows.zip.
Java snoop https://code.google.com/p/javasnoop/
Flash
Trillix
Flashbang https://github.com/cure53/Flashbang
Has anyone here got any others they can suggest?
Ideally I'm looking for free stuff but cheap commercial...
Honeypots — Discussions about tracking attackers by setting up decoy honeypots or entire honeynet networks.
Honeypot malware archives
Matteo Cantoni (Feb 14)
Hello everyone,
I would like share with you for educational purposes and without any
commercial purpose, data collected by the my homemade honeypot.
Nothing new, nothing shocking, nothing sensational... but I think can
be of interest to newcomers to the world of analysis of malware,
botnets, etc... maybe for a thesis.
The files collected are divided into zip archives, in alphabetical
order, with password (which must be request via email). Some...
Microsoft Sec Notification — Beware that MS often uses these security bulletins as marketing propaganda to downplay serious vulnerabilities in their products—note how most have a prominent and often-misleading "mitigating factors" section.
Microsoft Security Bulletin Summary for August 2015
Microsoft (Aug 11)
********************************************************************
Microsoft Security Bulletin Summary for August 2015
Issued: August 11, 2015
********************************************************************
This bulletin summary lists security bulletins released for
August 2015.
The full version of the Microsoft Security Bulletin Summary for
August 2015 can be found at
<https://technet.microsoft.com/library/security/ms15-aug>....
Microsoft Security Advisory Notification
Microsoft (Aug 11)
********************************************************************
Title: Microsoft Security Advisory Notification
Issued: August 11, 2015
********************************************************************
Security Advisories Updated or Released Today
==============================================
* Microsoft Security Advisory (2755801)
- Title: Update for Vulnerabilities in Adobe Flash Player in
Internet Explorer and Microsoft Edge...
Microsoft Security Bulletin Summary for July 2015
Microsoft (Jul 29)
********************************************************************
Microsoft Security Bulletin Summary for July 2015
Issued: July 29, 2015
********************************************************************
This is to notify customers of a revision to the Bulletin Summary
for July 2015 to reflect the addition of a Windows 10 update for
MS15-074 and MS15-078, which was released July 29, 2015.
The full version of the Microsoft Security...
Microsoft Security Bulletin Minor Revisions
Microsoft (Jul 29)
********************************************************************
Title: Microsoft Security Bulletin Minor Revisions
Issued: July 29, 2015
********************************************************************
Summary
=======
The following bulletins have undergone a minor revision increment.
Please see the appropriate bulletin for more details.
* MS15-069 - Important
Bulletin Information:
=====================
MS15-069 - Important
-...
Microsoft Security Bulletin Releases
Microsoft (Jul 29)
********************************************************************
Title: Microsoft Security Bulletin Releases
Issued: July 29, 2015
********************************************************************
Summary
=======
The following bulletins have undergone a major revision increment.
* MS15-074 - Important
* MS15-078 - Critical
Bulletin Information:
=====================
MS15-074 - Important
- Title: VVulnerability in Windows...
Microsoft Security Advisory Notification
Microsoft (Jul 29)
********************************************************************
Title: Microsoft Security Advisory Notification
Issued: July 29, 2015
********************************************************************
Security Advisories Updated or Released Today
==============================================
* Microsoft Security Advisory (2755801)
- Title: Update for Vulnerabilities in Adobe Flash Player in
Internet Explorer
-...
Microsoft Security Bulletin Minor Revisions
Microsoft (Jul 22)
********************************************************************
Title: Microsoft Security Bulletin Minor Revisions
Issued: July 22, 2015
********************************************************************
Summary
=======
The following bulletins have undergone a minor revision increment.
Please see the appropriate bulletin for more details.
* MS15-058 - Important
* MS15-065 - Critical
Bulletin Information:
=====================...
Microsoft Security Bulletin Releases
Microsoft (Jul 22)
********************************************************************
Title: Microsoft Security Bulletin Releases
Issued: July 22, 2015
********************************************************************
Summary
=======
The following bulletins have undergone a major revision increment.
* MS15-006 - Important
Bulletin Information:
=====================
MS15-006 - Important
- Title: Vulnerability in Windows Error Reporting Could Allow...
Microsoft Security Bulletin Summary for July 2015
Microsoft (Jul 20)
********************************************************************
Microsoft Security Bulletin Summary for July 2015
Issued: July 20, 2015
********************************************************************
This is a notification of an out-of-band security bulletin that was
added to the July Security Bulletin Summary on July 20, 2015.
The full version of the Microsoft Security Bulletin Summary for
July 2015 can be found at
<...
Microsoft Security Advisory Notification
Microsoft (Jul 15)
********************************************************************
Title: Microsoft Security Advisory Notification
Issued: July 15, 2015
********************************************************************
Security Advisories Updated or Released Today
==============================================
* Microsoft Security Advisory (2755801)
- Title: Update for Vulnerabilities in Adobe Flash Player in
Internet Explorer
-...
Microsoft Security Bulletin Summary for July 2015
Microsoft (Jul 14)
********************************************************************
Microsoft Security Bulletin Summary for July 2015
Issued: July 14, 2015
********************************************************************
This bulletin summary lists security bulletins released for
July 2015.
The full version of the Microsoft Security Bulletin Summary for
July 2015 can be found at
<https://technet.microsoft.com/library/security/ms15-jul>.
Critical...
Microsoft Security Advisory Notification
Microsoft (Jul 14)
********************************************************************
Title: Microsoft Security Advisory Notification
Issued: July 14, 2015
********************************************************************
Security Advisories Updated or Released Today
==============================================
* Microsoft Security Advisory (3057154)
- Title: Update to Harden Use of DES Encryption
-...
Microsoft Security Advisory Notification
Microsoft (Jun 23)
********************************************************************
Title: Microsoft Security Advisory Notification
Issued: June 23, 2015
********************************************************************
Security Advisories Updated or Released Today
==============================================
* Microsoft Security Advisory (2755801)
- Title: Update for Vulnerabilities in Adobe Flash Player in
Internet Explorer
-...
Microsoft Security Bulletin Minor Revisions
Microsoft (Jun 23)
********************************************************************
Title: Microsoft Security Bulletin Minor Revisions
Issued: June 23, 2015
********************************************************************
Summary
=======
The following bulletins have undergone a minor revision increment.
Please see the appropriate bulletin for more details.
* MS15-044 - Critical
* MS15-049 - Critical
Bulletin Information:
=====================...
Microsoft Security Bulletin Minor Revisions
Microsoft (Jun 17)
********************************************************************
Title: Microsoft Security Bulletin Minor Revisions
Issued: June 17, 2015
********************************************************************
Summary
=======
The following bulletins have undergone a minor revision increment.
Please see the appropriate bulletin for more details.
* MS14-051 - Critical
* MS15-048 - Important
Bulletin Information:
=====================...
Funsec — While most security lists ban off-topic discussion, Funsec is a haven for free community discussion and enjoyment of the lighter, more humorous side of the security community
Fwd: IMPORTANT: Auth codes and registrant passwords
Jeffrey Walton (Aug 11)
It looks like OpenSRS got completely pwn'd.
Last week they sent the change password email. Now, the authorization
codes. They have not sent out the email or letter about a compromised
credit card (yet).
---------- Forwarded message ----------
From: OpenSRS <help () opensrs com>
Date: Tue, Aug 11, 2015 at 5:47 PM
Subject: IMPORTANT: Auth codes and registrant passwords
To: *|FNAME|* <noloader () gmail com>
Auth codes and...
Re: Wait ... Windows 10 is a P2P torrent?
Steve Pirk (Aug 01)
I can hear some of the smarmy replies already... "Hey, it's free... Quit
your bitching." :)
They could have modeled it like most bittorrent clients by pointing out an
easy way to disable or limit your uploads within the application, not as an
obscure OS configuration setting.
Live and learn... At least they are moving towards open source.
Wait ... Windows 10 is a P2P torrent?
Rob, grandpa of Ryan, Trevor, Devon & Hannah (Aug 01)
http://thenextweb.com/microsoft/2015/07/30/windows-10-steals-your-bandwidth-
to-send-other-people-updates/
====================== (quote inserted randomly by Pegasus Mailer)
rslade () vcn bc ca slade () victoria tc ca rslade () computercrime org
The trouble with the world is that the stupid are cocksure and
the intelligent are full of doubt. - Bertrand Russell
victoria.tc.ca/techrev/rms.htm http://www.infosecbc.org/links...
NSA is missing a trick, here ...
Rob, grandpa of Ryan, Trevor, Devon & Hannah (Jul 31)
http://www.nytimes.com/2015/08/04/science/for-sympathetic-ear-more-chinese-
turn-to-smartphone-program.html
"Since Xiaoice collects vast amounts of intimate details on individuals, the
program inevitably raises questions about users privacy."
Siri, Cortona, Xiaoice, etc. At least with Facebook you have to semi-deliberately
share your deepest secrets with the world. But who is going to remember (or
guard) what they say to a...
It's good that people in San Francisco are taking computer security seriously ...
Rob, grandpa of Ryan, Trevor, Devon & Hannah (Jul 23)
http://pzfeed.com/san-francisco-residents-hiring-witch-to-help-protect-computers-
from-evil-spirits-and-viruses/
====================== (quote inserted randomly by Pegasus Mailer)
rslade () vcn bc ca slade () victoria tc ca rslade () computercrime org
The world is full of smart people who have information about
every imaginable topic, and until the Internet came along, there
wasn't any practical to put it together....
Re: Mixed feelings ...
Blanchard, Michael (InfoSec) (Jul 22)
A company is a company, whether or not they fit *your* moral compass is immaterial really.... it's still a security
breach
Michael P. Blanchard
Principal Security Engineer, CISSP, GCIH, CCSA-NGX, MCSE
Cyber Security Services
EMC ² Corporation
32 Coslin Drive
Southboro, MA 01772
-----Original Message-----
From: funsec [mailto:funsec-bounces () lists linuxbox org] On Behalf Of Rob, grandpa of Ryan, Trevor, Devon & Hannah
Sent: Monday,...
Possible legal protection for Ashley Madison clients
Rob, grandpa of Ryan, Trevor, Devon & Hannah (Jul 20)
http://www.japantimes.co.jp/news/2015/06/10/national/crime-legal/surprise-tokyo-
court-ruling-endorses-adultery-experts
====================== (quote inserted randomly by Pegasus Mailer)
rslade () vcn bc ca slade () victoria tc ca rslade () computercrime org
Surely our priorities, encouraged by the handy histrionic soap
box that is social media, are increasingly sorely misplaced, our
common sense increasingly co-opted by no sense....
Mixed feelings ...
Rob, grandpa of Ryan, Trevor, Devon & Hannah (Jul 20)
I know that it's wrong to hack a company, and then threaten to publish all the
private and confidential information obtained in the breach, but I have to admit
that I'm feeling a bit conflicted about feeling outraged when it comes to Ashley
Madison ...
http://www.cbc.ca/news/business/ashley-madison-infamous-infidelity-website-target-
of-data-hack-1.3159643
====================== (quote inserted randomly by Pegasus Mailer)
rslade...
server change - new email for funsec
Gadi Evron (Jul 12)
Hi folks, we migrated servers. The new address to send email to is:
funsec () lists linuxbox org
Please also update your filters accodingly.
:)
Thanks,
Gadi.
Ruxcon 2015 Final Call For Presentations
cfp (Jul 12)
Ruxcon 2015 Final Call For Presentations
Melbourne, Australia, October 24-25
CQ Function Centre
http://www.ruxcon.org.au
The Ruxcon team is pleased to announce the first round of Call For Presentations for Ruxcon 2015.
This year the conference will take place over the weekend of the 24th and 25th of October at the CQ Function Centre,
Melbourne, Australia.
The deadline for submissions is the 15th of September, 2015.
.[x]. About Ruxcon .[x]....
Re: Sorry
Dean Webb (Jul 12)
Hello all,
Michal's comment made me recall this recent article from The Bulletin
of Atomic Scientists:
http://thebulletin.org/how-next-us-nuclear-accident-could-happen8441
We can become numb to automation, and then it becomes a blind spot for
us. We assume that things will work because they're in production, yet
they may not have had sufficient testing at boundary conditions to see
how they perform under stress.
Consider also the...
Re: Sorry
David Chess (Jul 12)
And this happened:
https://twitter.com/sarahoconnor_/status/616282747200479232
notsp: RISKS v28 is75 is malware
Rob, grandpa of Ryan, Trevor, Devon & Hannah (Jul 07)
Today my Avast antiviral became convinced that the July 7 issue of the RISKS
Forum Digest is malware, and quarantined it.
Since the first article in this particular Digest is the excellent summary of the
"Keys Under Doormats" report, and since there has recently been evidence that
the NSA has been trying to install backdoors into antiviral software, is it possible
that the NSA is using it's backdoor to try and suppress access...
Re: Sorry
Dan Kaminsky (Jul 06)
True-ish -- it's moving from a body (and two eyes) to no body (but no
eyes). Works better on average and much worse in unusual circumstances.
--Dan
Re: Sorry
Michal Zalewski (Jul 03)
Industrial processes are terrifying. Many people die or lose limbs
every year when operating all sorts of factory-floor machinery;
everything from CNC machining centers to metal forming presses can and
does kill. I suspect we find this tragic story captivating is because
robotic arms are menacingly anthropomorphic, whereas machining centers
are not? But I bet that by fully automating production lines, they on
balance save lives.
/mz
CERT Advisories — The Computer Emergency Response Team has been responding to security incidents and sharing vulnerability information since the Morris Worm hit in 1986. This archive combines their technical security alerts, tips, and current activity lists.
Alert - Upcoming Mail Delivery Changes
US-CERT Alerts (May 10)
National Cyber Awareness System
US-CERT Alert - Upcoming Mail Delivery Changes
Thank you for being a subscriber to our US-CERT Alerts product. We
are striving to keep our capabilities at the leading edge of
communication. You may have noticed we've redesigned and upgraded our
website recently and as a part of that process, on May 14th, we are
migrating to GovDelivery as our email subscription service. As a
current subscriber you will...
Current Activity - Upcoming Mail Delivery Changes
Current Activity (May 10)
National Cyber Awareness System
Thank you for being a subscriber to our US-CERT Current Activity
product. We are striving to keep our capabilities at the leading edge
of communication. You may have noticed we've redesigned and upgraded
our website recently and as a part of that process, on May 14th, we
are migrating to GovDelivery as our email subscription service. As a
current subscriber you will need to do nothing. You will notice a...
Current Activity - Microsoft Releases Advance Notification for May 2013 Security Bulletin
Current Activity (May 09)
National Cyber Awareness System
Microsoft Releases Advance Notification for May 2013 Security Bulletin
Original release date: May 09, 2013
Microsoft has issued a Security Bulletin Advanced Notification
indicating that its May release will contain 10 bulletins. These
bulletins will have the severity rating of critical and important and
will be for Microsoft Windows, Office, Internet Explorer, .NET
Framework, Lync, and Windows Essentials. These...
Current Activity - Adobe Releases Security Advisory for ColdFusion
Current Activity (May 09)
National Cyber Awareness System
Adobe Releases Security Advisory for ColdFusion
Original release date: May 09, 2013
Adobe has identified a critical vulnerability affecting ColdFusion 10,
9.0.2, 9.0.1, 9.0, and earlier versions for Windows, Macintosh, and
UNIX. This vulnerability (CVE-2013-3336) could permit an unauthorized
user to remotely retrieve files stored on a server. There are reports
that an exploit of this vulnerability is publicly...
Current Activity - Microsoft Releases Security Advisory for Internet Explorer
Current Activity (May 07)
National Cyber Awareness System
Microsoft Releases Security Advisory for Internet Explorer
Original release date: May 07, 2013
Microsoft is investigating public reports of a remote code execution
vulnerability in Internet Explorer 8 and is aware of attacks that
attempt to exploit this vulnerability. This vulnerability may allow an
attacker to execute arbitrary code if a user accesses a specially
crafted website. Microsoft is actively working...
Current Activity - Cisco Releases Security Advisories
Current Activity (Apr 25)
National Cyber Awareness System
Cisco Releases Security Advisories
Original release date: April 25, 2013
Cisco has released three security advisories to address vulnerabilities
affecting Cisco NX-OS-based products, Cisco Device Manager, and Cisco
Unified Computing System. These vulnerabilities may allow an attacker to
bypass authentication controls, execute arbitrary code, obtain sensitive
information, or cause a denial-of-service condition....
Current Activity - Apple Releases Security Updates for Safari
Current Activity (Apr 18)
National Cyber Awareness System
Apple Releases Security Updates for Safari
Original release date: April 18, 2013
Apple has released security updates for Safari 6.0.4 WebKit to address
multiple vulnerabilities. These vulnerabilities could allow a remote
attacker to execute arbitrary code or cause a denial-of-service
condition.
Safari 6.0.4 WebKit updates are available for the following versions:
* OS X Lion v10.7.5
* OS X Lion Server v10.7.5...
Alert TA13-107A: Oracle has released multiple updates for Java SE
US-CERT Alerts (Apr 18)
National Cyber Awareness System
TA13-107A: Oracle has released multiple updates for Java SE
Original release date: April 17, 2013
Systems Affected
* JDK and JRE 7 Update 17 and earlier
* JDK and JRE 6 Update 43 and earlier
* JDK and JRE 5.0 Update 41 and earlier
* JavaFX 2.2.7 and earlier
Overview
Oracle has released a Critical Patch Update (CPU) for Java SE. Oracle
strongly recommends that customers apply CPU fixes as soon as possible....
Current Activity - Scams Exploiting Boston Marathon Explosion
Current Activity (Apr 17)
National Cyber Awareness System
Scams Exploiting Boston Marathon Explosion
Original release date: April 17, 2013
Malicious actors are exploiting the April 15 explosions at the Boston
Marathon in attempts to collect money intended for charities and to
spread malicious code. Fake websites and social networking accounts have
been set up to take advantage of those interested in learning more
details about the explosions or looking to contribute to...
Current Activity - Malicious Actors May Take Advantage of Boston Marathon Explosion
Current Activity (Apr 17)
National Cyber Awareness System
Malicious Actors May Take Advantage of Boston Marathon Explosion
Original release date: April 17, 2013
Historically, scammers, spammers, and other malicious actors capitalize
on major news events by registering domain names related to the events.
Malicious actors may attempt to exploit the April 15, 2013 explosions at
the Boston Marathon in this way. Some may use fake domains to take
advantage of those interested...
Current Activity - Oracle Releases April 2013 Security Advisory
Current Activity (Apr 17)
National Cyber Awareness System
Oracle Releases April 2013 Security Advisory
Original release date: April 17, 2013
Oracle has released its Critical Patch Update for April 2013 to address
128 vulnerabilities across multiple products. This update contains the
following security fixes:
* 4 for Oracle Database Server
* 29 for Oracle Fusion Middleware
* 6 for Oracle E-Business Suite
* 3 for Oracle Supply Chain Products Suite
* 11 for Oracle...
Current Activity - WordPress Sites Targeted by Mass Brute-force Botnet Attack
Current Activity (Apr 15)
National Cyber Awareness System
WordPress Sites Targeted by Mass Brute-force Botnet Attack
Original release date: April 15, 2013
US-CERT is aware of an ongoing campaign targeting the content management
software WordPress, a free and open source blogging tool and web
publishing platform based on PHP and MySQL. All hosting providers
offering WordPress for web content management are potentially targets.
Hackers reportedly are utilizing over 90,000...
Current Activity - Microsoft Releases April 2013 Security Bulletin
Current Activity (Apr 09)
National Cyber Awareness System
Microsoft Releases April 2013 Security Bulletin
Original release date: April 04, 2013 | Last revised: April 09, 2013
Microsoft has released updates to address vulnerabilities in Microsoft
Windows, Office, Internet Explorer, Server Software, and Security
Software as part of the Microsoft Security Bulletin summary for April
2013. These vulnerabilities could allow remote code execution, elevation
of privilege,...
Current Activity - Microsoft Releases Advance Notification for April 2013 Security Bulletin
Current Activity (Apr 04)
National Cyber Awareness System
Microsoft Releases Advance Notification for April 2013 Security Bulletin
Original release date: April 04, 2013
Microsoft has issued a Security Bulletin Advance Notification indicating
that its April release will contain nine bulletins. These bulletins will
have the severity rating of critical and important and will be for
Microsoft Windows, Office, Internet Explorer, Server Software, and
Security Software. These...
Current Activity - Mozilla Releases Multiple Updates
Current Activity (Apr 03)
National Cyber Awareness System
Mozilla Releases Multiple Updates
Original release date: April 03, 2013
The Mozilla Foundation has released updates to address multiple
vulnerabilities. These vulnerabilities could allow an attacker to
initiate a cross-site scripting attack or obtain sensitive information,
enable privilege escalation or execute arbitrary code, or cause a
denial-of-service condition.
Updates to the following products are...
Open Source Security — Discussion of security flaws, concepts, and practices in the Open Source community
Processor side channels using out of order execution
Kurt Seifried (Aug 11)
Some interesting work in line with that CAIN thing from last week:
https://blog.trailofbits.com/2015/07/21/hardware-side-channels-in-the-cloud/
http://sophia.re/cache.pdf
http://sophia.re/RECON/
not sure if this needs a CVE or not, since CAIN got one I'm thinking a
strong maybe?
Re: Re: Terminal escape sequences - the new XSS for admins?
Steve Grubb (Aug 11)
The whole idea is to write something that you can bounce back to the prompt.
lTerminal is pretty limiting. An attacker would have to also place the file
lTerminal in the search path before using this trick. But if they can do pre-
place a file in the search path, they can also take advantage of typing
mistakes like placing a file vo and then waiting for the admin to make a
mistake typing vi.
What you really want to do in an attack is to try...
Re: Terminal escape sequences - the new XSS for admins?
Andy Lutomirski (Aug 11)
Are all the supposedly invulnerable terminals actually safe?
Gnome-terminal reports:
0000000: 1b5d 6c54 6572 6d69 6e61 6c1b 5c .]lTerminal.\
That's not as bad as echoing 'ls -al' back to the terminal input, but
why is it considered acceptable for terminals to input anything
whatsoever in response to the in-band data they receive?
--Andy
Re: Terminal escape sequences - the new XSS for admins?
Florian Weimer (Aug 11)
* Steve Grubb:
Upstream xterm has other problematic window ops enabled by default.
Debian should disable all of them since xterm version 251-1, but this
is a downstream-specific change. (Upstream documentation is also a
bit misleading, AFAICS.)
Re: Terminal escape sequences - the new XSS for admins?
Stephane Chazelas (Aug 11)
2015-08-11 16:29:04 -0400, Steve Grubb:
[....]
[...]
Yes, it's the kind of vulnerabilities that were exploited
decades ago and were fixed then.
Now, the authors of newer ones can forget about them.
terminology has a few dangerous escape sequences (including
reporting window title, but also reading arbitrary files and
sending arbitrary HTTP requests), as discussed at...
Re: Terminal escape sequences - the new XSS for admins?
Steve Grubb (Aug 11)
echo $'\e[30m' - turns foreground black (used to trick people by hiding
text)
echo $'\e]2;ls -al\a' - set window title to 'ls -al'
echo $'\e[21t' - print the window title to the command prompt. This is the one
to watch out for.
In my survey recently, Some emulators could set the window title; none of them
supported reading the window title back to the command prompt. If you find one
that does, it is...
Re: Terminal escape sequences - the new XSS for admins?
Daniel Kahn Gillmor (Aug 11)
Do we have a catalog of terminal programs that are vulnerable, or of
particularly dangerous escape sequences to test with each terminal
emulator? I'd be happy to try to organize a torches-and-pitchforks run
through the debian archive if i know what to look for.
https://security.stackexchange.com/questions/56307/can-cat-ing-a-file-be-a-potential-security-risk
has some good links and discussion from just last year but nothing
systematized...
CVE request - OpenSSH 6.9 PAM privilege separation vulnerabilities
Moritz Jodeit (Aug 11)
Hello list,
could you please assign two CVE IDs for the following two security
issues fixed in OpenSSH 7.0 (directly taken from the release notes [1]):
* sshd(8): Portable OpenSSH only: Fixed a privilege separation
weakness related to PAM support. Attackers who could successfully
compromise the pre-authentication process for remote code
execution and who had valid credentials on the host could
impersonate other users. Reported by...
Terminal escape sequences - the new XSS for admins?
Kurt Seifried (Aug 11)
So we've had a bunch of this stuff over the years:
http://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=terminal+escape
And now more recently:
http://turbochaos.blogspot.ca/2014/08/journalctl-terminal-escape-injection.html
https://bugzilla.redhat.com/show_bug.cgi?id=1084577
And we have at least one more coming down the pipeline that's pretty
widespread.
Also I'm thinking of all those docker apps that log to STDOUT.
So the basic...
Re: Duplicate Wireshark CVEs?
Siddharth Sharma (Aug 11)
Hi,
Any information available on why both Wireshark CVEs
CVE-2015-3811 CVE-2015-2188 point to one fix ?
Thanks
-----------------------------------------------------------------
Siddharth Sharma / Red Hat Product Security / Key ID : 0xD9F6489A
Fingerprint : 0x6F04C684 A49C E4CE 8148 E841 CD6F 8E55 D9F6 489A
----- Original Message -----
From: "Martin Prpic" <mprpic () redhat com>
To: oss-security () lists openwall com
Sent:...
Re: CVE for crypto_get_random() from libsrtp
Jeremy Stanley (Aug 11)
[...]
[...]
That makes more sense. I read your initial "Unless CVE is assigned"
comment to mean that you were going to base your decision on whether
to distribute a fix on MITRE's classification process rather than on
your own due diligence. Thanks for clarifying!
Re: CVE for crypto_get_random() from libsrtp
Adam Maris (Aug 11)
This has nothing to do with us not fixing flaws just because they don't
get a CVE. I assure you that we've fixed security flaws that had no CVEs
before. And if you look through our CVE database, you'll find many
examples of simple crashers that unfortunately got a CVE, which we did
not fix.
The main reason for not fixing it for now is that we think 80 bits of
randomness is enough for most applications up to this day,...
Re: CVE for crypto_get_random() from libsrtp
Jeremy Stanley (Aug 11)
[...]
I find this an interesting stance. Don't you decide on your own
whether your customers are impacted by a bug sufficiently to require
a fix (security vulnerability or otherwise)? It seems reasonable to
me that you would choose whether or not to ship a patch
independently of how MITRE chooses to classify (or not) the
associated bug... and vice versa, if a CVE is assigned for a bug you
consider to have minimal impact, do you release a...
Re: CVE for crypto_get_random() from libsrtp
Adam Maris (Aug 11)
Hello,
The weakest method it provides uses no encryption at all, just HMAC-SHA1
with 80 bit authentication tag:
http://srtp.sourcearchive.com/documentation/1.4.2.dfsg/group__SRTP_g94d0056e812802ac2920aa474bc5b59b.html
Unless CVE is assigned, we don't plan to ship any patch at the moment.
Regards,
Re: Re: Linux x86_64 NMI security issues
Thomas D. (Aug 11)
Hi,
Andy Lutomirski wrote:
Looks like linux-4.1.5 doesn't contain the fix.
Wasn't the patch set sent to stable-linux? Is it not yet ready?
-Thomas
Secure Coding — The Secure Coding list (SC-L) is an open forum for the discussion on developing secure applications. It is moderated by the authors of Secure Coding: Principles and Practices.
Silver Bullet 112: Matthew Green and Steve Bellovin on Crypto Back Doors
Gary McGraw (Jul 23)
hi sc-l,
For the latest episode of Silver Bullet, we spoke to two of the fifteen co-authors of the Keys Under Doormats paper
describing the technical peril of implementing crypto back doors as FBI Director Comey has suggested. Steve Bellovin
comes at the problem with years of experience and direct involvement in the first crypto wars. Matthew Green comes to
the problem with a solid understanding of applied cryptography in real world...
Re: Silver Bullet 111: Marcus Ranum
Gunnar Peterson (Jul 16)
In case anyone needs a summer project, I wonder what percentage of issues discussed in the 111 shows are still issues
today?
-gunnar
Re: Silver Bullet 111: Marcus Ranum
Kevin W. Wall (Jul 10)
Ah, I see...so the dirty trick is that you are finally doing reruns.
Syndication can't be far behind. ;-)
-kevin
Sent from my Droid; please excuse typos.
Silver Bullet 111: Marcus Ranum
Gary McGraw (Jul 07)
hi sc-l,
Silver Bullet episode 111 is a sneaky one based around a “dirty brilliant trick." The episode features Marcus Ranum,
inventor of the proxy firewall and all around security guru. We talk about perimeter security, software security,
security progress (or lack of such) and whether hackers are necessary for security.
http://bit.ly/sb111-mjr (or for purists http://www.cigital.com/silver-bullet/show-111/)
So what was the trick?...
Ruxcon 2015 Final Call For Presentations
cfp (Jul 07)
Ruxcon 2015 Final Call For Presentations
Melbourne, Australia, October 24-25
CQ Function Centre
http://www.ruxcon.org.au
The Ruxcon team is pleased to announce the first round of Call For Presentations for Ruxcon 2015.
This year the conference will take place over the weekend of the 24th and 25th of October at the CQ Function Centre,
Melbourne, Australia.
The deadline for submissions is the 15th of September, 2015.
.[x]. About Ruxcon .[x]....
Silver Bullet 110: Paul Dorey
Gary McGraw (Jun 04)
hi sc-l,
Silver Bullet episode 110 features Paul Dorey. Paul was one of the original CSOs of Europe, ultimately serving as the
CSO of BP. He and I are on an Advisory Board together, and most recently, Paul and I did a “fernside chat” at the
BSIMM Europe Conference. We talk about the CSO job, software security, and a few other things on this episode:
http://bit.ly/SB-dorey
As always, your feedback is welcome. Please post, tweet,...
Breakpoint 2015 Call For Presentations
cfp (May 20)
Breakpoint 2015 Call For Papers
Melbourne, Australia, October 22th-23th
Intercontinental Rialto
http://www.ruxconbreakpoint.com
.[x]. Introduction .[x].
We are pleased to announce Call For Presentations for Breakpoint 2015.
Breakpoint showcases the work of expert security researchers from around the
world on a wide range of topics. This conference is organised by the Ruxcon
team and offers a specialised security conference to complement...
RSA Antidote: Bart Preneel on Silver Bullet 109
Gary McGraw (Apr 27)
hi sc-l,
Lots of us have RSA Conference goo leaking out of our ears by now. Yerg. Here’s a quick antidote from a serious
cryptographer. Bart Preneel is a professor at KL Leuven University (founded in 1425). He is an exceptional
cryptographer and a huge supporter of software security in Europe.
http://bit.ly/SB-bart
As always, your feedback is welcome. Two more days of RSA to go. Please send reinforcements.
gem
Ruxcon 2015 Call For Presentations
cfp (Apr 14)
Ruxcon 2015 Call For Presentations
Melbourne, Australia, October 24-25
CQ Function Centre
http://www.ruxcon.org.au
The Ruxcon team is pleased to announce the first round of Call For Presentations for Ruxcon 2015.
This year the conference will take place over the weekend of the 24th and 25th of October at the CQ Function Centre,
Melbourne, Australia.
The deadline for submissions is the 30th of June, 2015.
.[x]. About Ruxcon .[x].
Ruxcon is...
Educause Security Discussion — Securing networks and computers in an academic environment.
SPC 2015 videos now open access
Brad Judy (Aug 11)
For those who were unable to attend the Educause Security Professionals Conference this year, the set of virtual
conference recordings is now open access (there was a 90-day exclusive access period for attendees). The recordings
include eight recorded in-person sessions and several online exclusive sessions. You can find them by viewing the SPC
virtual conference agenda here:...
Re: Where to advertise? Director of Security Operations
Barrett, Bruce (Aug 11)
This is nice. Did anyone do an analysis on salary ranges for this type of position?
Cheers,
bruce
From: The EDUCAUSE Security Constituent Group Listserv [mailto:SECURITY () LISTSERV EDUCAUSE EDU] On Behalf Of Valerie
Vogel
Sent: Tuesday, August 11, 2015 10:39 AM
To: SECURITY () LISTSERV EDUCAUSE EDU
Subject: Re: [SECURITY] Where to advertise? Director of Security Operations
We have created a CISO job description template as part of the...
Re: Where to advertise? Director of Security Operations
Sharon Pitt (Aug 11)
Thanks so much to everyone for the excellent advice! When we are ready to
post, I may take some of you up on your kind offers.
Sharon
Sharon P. Pitt
Associate Vice President and CIO
Binghamton University
http://www.binghamton.edu/its/
<http://itservices.gmu.edu>
Binghamton, NY 13902
(607) 777-3621 (W)
spitt () binghamton edu <spitt () gmu edu>
twitter () sppitt
Re: Where to advertise? Director of Security Operations
Valerie Vogel (Aug 11)
We have created a CISO job description template as part of the Information Security Guide. It includes sample job
postings and a template, as well as potential locations to post information security job openings. (We are happy to
include other suggested links if we’ve missed anything!)
https://spaces.internet2.edu/display/2014infosecurityguide/CISO+Job+Description+Template
Thank you,
Valerie
Valerie Vogel Program Manager
EDUCAUSE
Uncommon...
[SECURITY]
Greg Duncan (Aug 11)
UNSUBSCRIBE security
2015 Higher Education CISO Survey
TAMMY L. CLARK (Aug 11)
Good morning colleagues,
The initial response to the Higher Education CISO survey has been outstanding. I hope you can find the time to add your
voice to the results so that we can all learn more about this critical position you occupy. I encourage you to forward
this message to fellow higher education CISOs. As a reminder, all participants will receive a free copy of the entire
report. The initial invitation is below.
Thank you for your...
Re: Where to advertise? Director of Security Operations
Persad, Nadira (Aug 11)
ISACA’s Career Centre and local ISACA chapter sites are good places to post Security and Audit jobs.
Regards,
Nadira
Nadira G Persad
Information Security Officer
University at Buffalo
716-645-9003
Email: ngpersad () buffalo edu<mailto:ngpersad () buffalo edu>
From: The EDUCAUSE Security Constituent Group Listserv [mailto:SECURITY () LISTSERV EDUCAUSE EDU] On Behalf Of Sharon
Pitt
Sent: Tuesday, August 11, 2015 8:38 AM
To: SECURITY ()...
Re: Where to advertise? Director of Security Operations
Shamblin, Quinn (Aug 11)
REN-ISAC is also a good place. If you don’t have a membership, I can let them know on your behalf if you give me a
short write-up and a link to the description/application.
Best,
Quinn R Shamblin .
Executive Director of Information Security, Boston University
From: The EDUCAUSE Security Constituent Group Listserv [mailto:SECURITY () LISTSERV EDUCAUSE EDU] On Behalf Of Sharon
Pitt
Sent:...
Where to advertise? Director of Security Operations
Sharon Pitt (Aug 11)
Hi,
Binghamton University will soon advertise for a Director of Security
Operations reporting into the Information Technology Services Division.
Beyond advertising via EDUCAUSE and the Chronicle of Higher Education, in
what other publications/sites should we consider posting this position in
order to attract a talented candidate pool that is savvy to the particular
challenges of IT security in higher education?
Thanks for you insight!
Sharon...
Yes they are definitely up to something!
Russell Fulton (Aug 10)
From our referrer report of 30 minutes ago:
[ 2 ] http://www.iam.auckland.ac.nz.ezprx.com/Authn/UserPassword/login.htm
[10/Aug/2015: 17:39:18 +1200] - 222.154.125.101
[11/Aug/2015: 03:44:18 +1200] - 74.125.63.33
Two IPs visited the site 74.125.63.33 is Indian — probably testing but 222.154.125.101 is a local ISP. And only one
user has recently authenticated from that address! Someone associated with the school of music. Time to send...
Re: Windows 10 Privacy Settings and "Regulated" data
Kevin Reedy (Aug 07)
An additional resource I just came across is Lifehacker's guide to exactly
what each of the settings does:
http://lifehacker.com/what-windows-10s-privacy-nightmare-settings-actually-1722267229
I think we most likely have a case of slight over reaction to the new and
unknown, mixed with a healthy dose of sensational headlines to generate
clicks. I will admit on my windows 10 machines most of these settings are
set to off, but mostly because...
Re: Security Review of Sona Systems for Research Participant Management?
randy (Aug 07)
They're based in Estonia, I believe. The only issue we had with them a
couple of years ago was their login portal wanted to use our local
credentials to access their system if my memory is correct.
-r.
On Fri, Aug 7, 2015 at 9:09 AM, Warren Petrofsky <petrofsk () sas upenn edu>
wrote:
Windows 10 Privacy Settings and "Regulated" data
randy (Aug 07)
The Windows 10 privacy settings has generated a lot of discussion on
various threads lately. I'm concerned about the implications of these
setting with respect to some of the regulations that govern EDU "data" such
as FERPA, HIPAA, ITAR, PCI, etc.
Does Educause have any working groups on this topic? Any thoughts on this?
While I don't expect one on Windows 10 specifically, have there been any
discussions on regulated (FERPA,...
Security Review of Sona Systems for Research Participant Management?
Warren Petrofsky (Aug 07)
Hi All,
Has anyone done a recent security review of Sona Systems?
http://www.sona-systems.com/
We get a lot of requests for Research Participant Management systems,
and at least one group is looking at Sona.
Thanks!
-- Warren
Equifax Work Number
Dean Halter (Aug 06)
We are considering engaging Equifax to allow our current and past employees
to electronically verify employment and income to lenders, social services,
etc. Users get accounts and can log in and specifically provide
"verifiers" access to their personal information as necessary.
This solution is intended to be available for both current and past
employees so central authentication isn't going to work for everyone. One
of the...
NANOG — The North American Network Operators' Group discusses fundamental Internet infrastructure issues such as routing, IP address allocation, and containing malicious activity.
Re: Data Center operations mail list?
Mark Tinka (Aug 12)
Tend to agree that a list with global scope might be more useful.
Mark.
router dump and config
Randy Bush (Aug 12)
[ uncast reply please, unless you just wanna tell me to foad publicly,
which is fine ]
purely for research, and we promise to destroy after. would appreciate
one router config (passwords/credentials removed, of course)
rib dump from that router (we can process C or J)
which has a number of large tier-1 peers
we are not really looking at peering or anything such as that. no
politics or business involved at all. it's about ACL...
Re: Cogent revisited
Mark Tinka (Aug 12)
We use Cogent. No major drama. Then again, we have 7x of the top global
providers in the mix.
My take is if you want to be single-homed, buy from a network slightly
lower in the chain to the top providers. They'll have a good blend.
If you want to buy from Cogent, buy from a slightly smaller ISP as well,
or add one or two other global providers into your mix. I'd do this
anyway, whether it was Cogent or not.
Mark.
Re: Experience on Wanguard for 'anti' DDOS solutions
marcel.duregards () yahoo fr (Aug 12)
Aaron,
Do you remember which release or when it was ?
Are you talking about detection or filtering which failed for many
sources targeting a single destination ?
Which sensor did you test, packet sensor or flow sensor ?
Thank,
Regards,
- Marcel
Re: Data Center operations mail list?
Rafael Possamai (Aug 12)
Haha, are you saying some people out there put nanog on their resume? I
thought 2008 was long gone.
Re: Experience on Wanguard for 'anti' DDOS solutions
Matt Taylor (Aug 12)
I have not experienced any problems with multiple source attacks at the
same time. This is also including with multiple destinations too.
I guess it really depends on what you expect the product to do, and how
you write integration too.
Regards,
Matt.
Re: Data Center operations mail list?
Randy Bush (Aug 12)
no! we need committees, and different colored badges, and web sites,
and deadlines, and lots of stuff the insecure can put on their resumes.
randy
Re: advice dealing with clean-mx
Paul Ferguson (Aug 12)
Follow-up off-list.
- ferg
advice dealing with clean-mx
Michael Bubb (Aug 12)
hello
I've lurked on this list for a while - I have an issue that I need help
with.
I work for a company that does fraud detection we host our servers on
physica hardware in managed hosting datacenters (softlayer, hertzer,
coresites, etc).
Recently we were flagged for malware buy clean-mx. It was the IP of an
haproxy loadbalancer.
I followed up by following the link to clean-mx. It looked as if the score
was based upon information from...
Re: Branch Location Over The Internet
Mike Hammett (Aug 12)
EoIP will tunnel over anything IP, including the public Internet. VPLS will only go over your network.
-----
Mike Hammett
Intelligent Computing Solutions
http://www.ics-il.com
Midwest Internet Exchange
http://www.midwest-ix.com
----- Original Message -----
From: "Colton Conor" <colton.conor () gmail com>
To: "Jürgen Jaritsch" <jj () anexia at>
Cc: nanog () nanog org
Sent: Tuesday, August 11, 2015...
Re: Data Center operations mail list?
Rafael Possamai (Aug 12)
The list just went live at "lists.nadcog.org". I am open to any
suggestions, just let me know. When you say move forward with the concept,
do you mean get the organization started as well, not just the mailing list?
Thanks,
Rafael
Re: Data Center operations mail list?
Mike (Aug 12)
At some point (hopefully sooner than later) the OP should just move
forward in some manner with the concept.
If I've learned anything about mailing lists in the past 35+ years,
things will be discussed and discussed and discussed and...
Parkinson's Law of Triviality comes to mind...
http://www.greatleadershipbydan.com/2012/12/parkinsons-law-of-triviality.html
Re: Branch Location Over The Internet
Pablo Lucena (Aug 12)
DMVPN is very flexible, and is designed for this type of scenario. Cisco
definitely supports it. Not sure about Juniper, but its essentially mGRE +
NHRP. You can use IPSec to encrypt the tunnels, and if you require
spoke-to-spoke connectivity, there are some optimizations in Phase-3 DMVPN
that make it scalable. I would recommend using BGP as the routing protocol
in this type of setup as well. Newer versions of Cisco code support...
AW: Branch Location Over The Internet
Jürgen Jaritsch (Aug 11)
Hi,
Some facts:
Dell R300, 1x Xeon CPU (Quadcore, 2,6GHz)
8GB Memory
Intel X520 10G NIC
RouterOS x86 installation (that’s the OS from the Mikrotik Routerboards)
Max transfer-rate via EoIP: ~5,7GBit/s
If you plan to use jumbo frames (everything with an payload >1500 byte): yes, packets will be split up, transferred and
aggregated on the other end. So your end-to-end communication will transport ANY MTU size you want (splitted up to your...
Re: Branch Location Over The Internet
Josh Luthman (Aug 11)
Eoip is Mikrotik only
Josh Luthman
Office: 937-552-2340
Direct: 937-552-2343
1100 Wayne St
Suite 1337
Troy, OH 45373
Interesting People — David Farber moderates this list for discussion involving internet governance, infrastructure, and any other topics he finds fascinating
The RISKS Forum — Peter G. Neumann moderates this regular digest of current events which demonstrate risks to the public in computers and related systems. Security risks are often discussed.
Risks Digest 28.84
RISKS List Owner (Aug 04)
RISKS-LIST: Risks-Forum Digest Tuesday 4 August 2015 Volume 28 : Issue 84
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.84.html>
The current issue can be...
Risks Digest 28.83
RISKS List Owner (Aug 03)
RISKS-LIST: Risks-Forum Digest Sunday 2 August 2015 Volume 28 : Issue 83
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.83.html>
The current issue can be...
Risks Digest 28.82
RISKS List Owner (Jul 30)
RISKS-LIST: Risks-Forum Digest Wednesday 29 July 2015 Volume 28 : Issue 82
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.82.html>
The current issue can be...
Risks Digest 28.81
RISKS List Owner (Jul 25)
RISKS-LIST: Risks-Forum Digest Saturday 25 July 2015 Volume 28 : Issue 81
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.81.html>
The current issue can be...
Risks Digest 28.80
RISKS List Owner (Jul 22)
RISKS-LIST: Risks-Forum Digest Wednesday 22 July 2015 Volume 28 : Issue 80
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.80.html>
The current issue can be...
Risks Digest 28.79
RISKS List Owner (Jul 20)
RISKS-LIST: Risks-Forum Digest Monday 20 July 2015 Volume 28 : Issue 79
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.79.html>
The current issue can be...
Risks Digest 28.78
RISKS List Owner (Jul 14)
RISKS-LIST: Risks-Forum Digest Tuesday 14 July 2015 Volume 28 : Issue 78
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.78.html>
The current issue can be...
Risks Digest 28.77
RISKS List Owner (Jul 11)
RISKS-LIST: Risks-Forum Digest Saturday 11 July 2015 Volume 28 : Issue 77
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.77.html>
The current issue can be...
Risks Digest 28.76
RISKS List Owner (Jul 09)
RISKS-LIST: Risks-Forum Digest Wednesday 8 July 2015 Volume 28 : Issue 76
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.76.html>
The current issue can be...
Risks Digest 28.75
RISKS List Owner (Jul 07)
RISKS-LIST: Risks-Forum Digest Tuesday 7 July 2015 Volume 28 : Issue 75
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.75.html>
The current issue can be...
Risks Digest 28.74
RISKS List Owner (Jul 01)
RISKS-LIST: Risks-Forum Digest Wednesday 1 July 2015 Volume 28 : Issue 74
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.74.html>
The current issue can be...
Risks Digest 28.73
RISKS List Owner (Jun 26)
RISKS-LIST: Risks-Forum Digest Friday 26 June 2015 Volume 28 : Issue 73
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.73.html>
The current issue can be...
Risks Digest 28.72
RISKS List Owner (Jun 22)
RISKS-LIST: Risks-Forum Digest Monday 22 June 2015 Volume 28 : Issue 72
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.72.html>
The current issue can be...
Risks Digest 28.71
RISKS List Owner (Jun 20)
RISKS-LIST: Risks-Forum Digest Saturday 20 June 2015 Volume 28 : Issue 71
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.71.html>
The current issue can be...
Risks Digest 28.70
RISKS List Owner (Jun 16)
RISKS-LIST: Risks-Forum Digest Tuesday 16 June 2015 Volume 28 : Issue 70
ACM FORUM ON RISKS TO THE PUBLIC IN COMPUTERS AND RELATED SYSTEMS (comp.risks)
Peter G. Neumann, moderator, chmn ACM Committee on Computers and Public Policy
***** See last item for further information, disclaimers, caveats, etc. *****
This issue is archived at <http://www.risks.org> as
<http://catless.ncl.ac.uk/Risks/28.70.html>
The current issue can be...
Data Loss — Data Loss covers large-scale personal data loss and theft incidents. This archive combines the main list (news releases) and the discussion list.
Why Hacking is a National Emergency
Audrey McNeil (Aug 07)
http://www.examiner.com/article/why-hacking-is-a-national-emergency
Foreign hackers, look out: Uncle Sam is out to get you. President Obama has
issued an order that allows the State Department and Treasury Departments
to immobilize the financial assets of anyone out-of country suspected of
committing or otherwise being involved in cyber crimes against the U.S.
This order, two years in the making, covers hacking of anything. The order
refers to...
How much security is enough?
Audrey McNeil (Aug 07)
http://www.firstpost.com/business/much-security-enough-2369530.html
"Reasonable security" is not clearly defined in any regulation or set of
best practices, since its definition is subjective. Gartner research
director Rob McMillan explains why it is best to adopt a risk management —
not a compliance —approach to demonstrating due care.
Provision of adequate information security is a corporate and government
agency obligation....
Cavalier attitude to privacy aids cyber-bandits
Audrey McNeil (Aug 07)
http://www.vancouversun.com/opinion/columnists/Wells+Cavalier+attitude+privacy+aids+cyber+bandits/11251103/story.html
Imagine coming home to find a stranger’s hands have rifled your financial
records, rummaged through your medicine cabinet, removed family photos and
ransacked your underwear drawer.
You feel violated and enraged.
At first, the police are sympathetic, but soon, their attitude changes. You
went out to shop for a few hours. The...
Cyber criminals targeting unwary businesses - report
Audrey McNeil (Aug 07)
http://www.smartcompany.com.au/technology/information-technology/47826-cyber-criminals-targeting-unwary-businesses-report.html#
Australian businesses are increasingly becoming targets for cyber crime,
according to the first national unclassified cyber security threat report.
The Australian Cyber Security Centre (ACSC) today released its Threat
Report 2015, which warns businesses could be targets for malicious
activities even if they do not...
How to leverage networks to boost security
Audrey McNeil (Aug 07)
http://gcn.com/articles/2015/07/29/networks-as-security.aspx
The breach at the Office of Personnel Management has put security top of
mind for nearly every government IT manager.
Many agencies are already practicing excellent cyber hygiene; others are
still in implementation phases. Regardless of where you are in the process,
it is critical to understand that security is not a one-product solution,
and it requires constant attention. Having a...
Higher Education Institutions Increasingly Falling Victim to Cyberattacks
Audrey McNeil (Aug 07)
http://www.jdsupra.com/legalnews/higher-education-institutions-70801/
Higher education institutions are treasure troves for hackers. Colleges and
universities are huge repositories of research data, sensitive information
for large populations of applicants and enrolled students (personal,
academic, financial and health data), as well as sensitive personal and tax
information for all faculty and staff. Higher education information systems
are...
Ashley Madison Reveals Even More: Hacking May Be An Inside Job
Audrey McNeil (Aug 06)
http://www.jdsupra.com/legalnews/ashley-madison-reveals-even-more-81416/
In recent years, hacking has infiltrated the retail industry. Hacking has
infiltrated the healthcare industry. Hacking has infiltrated the sports
industry. And now, hacking has now infiltrated the most personal (some
would say immoral) activities we engage in on the Internet.
Last week, Ashley Madison, an international website that facilitates
adultery, publicly announced...
Indian companies mostly uninsured against cyber attacks
Audrey McNeil (Aug 06)
http://www.dnaindia.com/money/report-indian-companies-mostly-uninsured-against-cyber-attacks-2108378
Indian companies are increasingly suffering huge losses due to rising cyber
attacks that leads to interruption of business and loss of customer data.
However, with only 100-150 policies covering cyber crime liability
insurance being sold in the country, majority companies are inadequately
protected against the growing menace, according to...
Alert: ATM Skimming Up in U.S.
Audrey McNeil (Aug 06)
http://www.databreachtoday.com/alert-atm-skimming-up-in-us-a-8432
A new security alert from ATM manufacturer NCR Corp. warns that ATM
skimming attacks in the U.S. are on an upswing. The trend likely is being
fueled by the migration away from magnetic-stripe technology toward EMV
chip technology.
ATMs of all makes and models have seen increases in skimming attacks in
recent months, according to the alert, which NCR issued July 23. Other ATM...
Security breach 101: How to recognize and prevent cyber attackers
Audrey McNeil (Aug 06)
http://www.correctionsone.com/police-technology/software/jail-management/articles/8691343-Security-breach-101-How-to-recognize-and-prevent-cybe
Once an agency records management system has been updated or is newly put
in place, agencies should be mindful of potential avenues from which cyber
attackers can breach system security. Security incidents are on the rise at
an alarming rate annually. As these threats increase in complexity, network...
CDOs say data accessibility plans should be theirs to lead
Audrey McNeil (Aug 06)
http://searchbusinessanalytics.techtarget.com/news/4500250664/CDOs-say-data-accessibility-plans-should-be-theirs-to-lead
The question of what data to liberate for use in self-service analytics
applications and what data to lock down continues to vex many businesses.
Most organizations today would like to consider themselves data-driven, and
at the heart of that posture is often a self-service ecosystem that gives
large numbers of users access to...
Banks Suing Target Make New Demands
Audrey McNeil (Aug 06)
http://www.databreachtoday.com/banks-suing-target-make-new-demands-a-8438#
U.S. banks and credit unions that filed a lawsuit against Target Corp.,
seeking to force the retailer to reimburse them for costs associated with
its massive 2013 data breach, now want the court to require Target to
disclose more details about its security practices.
In a motion filed July 24, plaintiffs' attorneys asked the court to force
the retailer to unseal...
The insider data hack: A legal perspective
Audrey McNeil (Aug 04)
http://www.itproportal.com/2015/07/27/the-insider-data-hack-legal-perspective/
Data security is a critical risk area for businesses of all sizes. Yet one
aspect of a company’s data security strategy that is often considered in
less detail is the threat posed by employees – the insider threat.
This includes both accidental loss of data through negligence and
deliberate misuse or theft of data by employees. Insiders can be current or
former...
Will The US Experience A Massive Cyber-attack Soon?
Audrey McNeil (Aug 04)
http://techaeris.com/2015/07/26/will-the-us-experience-a-massive-cyber-attack-soon/
er the past year the cases of major cybersecurity breaches have seemed to
increase and it does not seem to be slowing down. Companies like Target,
British Airways. Lenovo, Sony, the Internal Revenue Service, the US Postal
Service, the US Government and now Ashley Madison have all felt the sting
of hackers. The hits keep on coming but is this just the tip of the...
With continuing breaches, mHealth should learn from past thefts
Audrey McNeil (Aug 04)
http://searchhealthit.techtarget.com/news/4500250556/With-continuing-breaches-mHealth-should-learn-from-past-thefts
With breaches in healthcare not slowing down anytime soon -- consider the
recent UCLA health system data breach -- experts at the recent mHealth +
Telehealth World Congress discussed security breaches, what healthcare
organization can learn from those breaches and the value of stolen
protected health information (PHI)....
Metasploit — Development discussion for Metasploit, the premier open source remote exploitation tool
Ruxcon 2015 Final Call For Presentations
cfp (Jul 06)
Ruxcon 2015 Final Call For Presentations
Melbourne, Australia, October 24-25
CQ Function Centre
http://www.ruxcon.org.au
The Ruxcon team is pleased to announce the first round of Call For Presentations for Ruxcon 2015.
This year the conference will take place over the weekend of the 24th and 25th of October at the CQ Function Centre,
Melbourne, Australia.
The deadline for submissions is the 15th of September, 2015.
.[x]. About Ruxcon .[x]....
Breakpoint 2015 Call For Presentations
cfp (May 17)
Breakpoint 2015 Call For Papers
Melbourne, Australia, October 22th-23th
Intercontinental Rialto
http://www.ruxconbreakpoint.com
.[x]. Introduction .[x].
We are pleased to announce Call For Presentations for Breakpoint 2015.
Breakpoint showcases the work of expert security researchers from around the
world on a wide range of topics. This conference is organised by the Ruxcon
team and offers a specialised security conference to complement...
Ruxcon 2015 Call For Presentations
cfp (Apr 13)
Ruxcon 2015 Call For Presentations
Melbourne, Australia, October 24-25
CQ Function Centre
http://www.ruxcon.org.au
The Ruxcon team is pleased to announce the first round of Call For Presentations for Ruxcon 2015.
This year the conference will take place over the weekend of the 24th and 25th of October at the CQ Function Centre,
Melbourne, Australia.
The deadline for submissions is the 30th of June, 2015.
.[x]. About Ruxcon .[x].
Ruxcon is...
Re: rev2self vs drop_token?
Rufe Glick (Apr 02)
Re: rev2self vs drop_token?
Matt Weeks (Apr 01)
1. Meterpreter can hold a token that it will use when spawning off any new
threads or processes using Meterpreter functionality. drop_token tells
meterpreter to release that token and go back to the Windows token.
Windows itself natively handles various tokens as well; say you had
exploited a process that runs as SYSTEM serving a named pipe that had
called ImpersonateNamedPipeClient; you would be running as the impersonated
user, which may not...
Wireshark — Discussion of the free and open source Wireshark network sniffer. No other sniffer (commercial or otherwise) comes close. This archive combines the Wireshark announcement, users, and developers mailing lists.
Re: Npcap 0.03 call for test
Jim Young (Aug 11)
Hello Yang,
I installed npcap-nmap-0.03-r6.exe but am still getting the IRQL_NOT_LESS_OR_EQUAL (a) BSoD on my Windows 8.1. system
immediately when I start Wireshark.
I went back retested 0.03-r3, 0.03-r4 and 0.03-r5 to confirm that its only r5 and r6 that trigger the immediate BSoD on
my system.
Here's the last BSoD WinDbg output when using Npcap 0.03-r6.
---------
2: kd> .symfix C:\Symbols
2: kd> .reload
Loading Kernel...
Re: Crash during fuzzing
Dario Lombardo (Aug 10)
On Mon, Aug 10, 2015 at 10:39 PM, Pascal Quantin <pascal.quantin () gmail com>
wrote:
Thank you.
Re: Crash during fuzzing
Pascal Quantin (Aug 10)
Hi Dario,
Le 10 août 2015 10:27 PM, "Dario Lombardo" <dario.lombardo.ml () gmail com> a
écrit :
../data/hpfeeds_all_packets_sample.pcap
You need to run it on the fuzzed capture (/tmp/fuzz-2015-08-10-7120.pcap),
not on the original one.
Pascal.
gave
../tools/fuzz-test.sh:
$COMMON_ARGS
UTC
ERROR:../epan/wmem/wmem_allocator_strict.c:77:wmem_strict_block_check_canaries:
Re: Crash during fuzzing
Dario Lombardo (Aug 10)
No crash still happening...
$ ../tools/test-captures.sh -b run ../data/hpfeeds_all_packets_sample.pcap
Testing file ../data/hpfeeds_all_packets_sample.pcap...
- with tree... OK
- without tree... OK
- without tree but with a read filter... OK
$
Re: Crash during fuzzing
Evan Huus (Aug 10)
The best way to reproduce fuzzer bugs is with ./tools/test-captures.sh
which sets all the same environment variables and flags as the main
fuzz script.
Since the error was in a memory canary, valgrind and/or ASAN may also
prove useful.
Evan
Crash during fuzzing
Dario Lombardo (Aug 10)
Hi list
II was fuzzing a protocol, and I experienced a crash. The fuzz-test.sh gave
me this output
$ ../tools/fuzz-test.sh -b run ../data/hpfeed_all_packets_sample.pcap
[...]
Starting pass 130:
../data/hpfeeds_all_packets_sample.pcap: (-nVxr) (-nr) OK
Starting pass 131:
../data/hpfeeds_all_packets_sample.pcap: (-nVxr) (-nr) OK
Starting pass 132:
../data/hpfeeds_all_packets_sample.pcap: (-nVxr) (-nr) OK
Starting pass 133:...
Re: Npcap 0.03 call for test
Yang Luo (Aug 10)
Hi Jim, Pascal,
This IRQL_NOT_LESS_OR_EQUAL (a) BSoD seems to be caused by
NdisAcquireSpinLock call in function NPF_StartUsingOpenInstance has
referred to freed Open struct memory, I have tried to fix it in latest
installer, you may try it at:
https://svn.nmap.org/nmap-exp/yang/NPcap-LWF/npcap-nmap-0.03-r6.exe
Cheers,
Yang
Re: [Wireshark-commits] master ef0bdbc: Cleanup a bunch of 802.11ad stuff.
Guy Harris (Aug 07)
No - I was just addressing the 802.11ad stuff, and some other things that came up in the process of checking the ENC_
values.
Re: Npcap 0.03 call for test
Jim Young (Aug 07)
Hello Yang,
After installing 0.03-r5 on my Windows 8.1 system I too am see a BSOD when starting Wireshark, tshark or dumpcap.
Like Pascal's Bugcheck Analysis my crashes are also reporting bug check string: IRQL_NOT_LESS_OR_EQUAL (a)
2: kd> .symfix C:\Symbols
2: kd> .reload
Loading Kernel Symbols
...............................................................
...................................................................
Re: Npcap 0.03 call for test
Pascal Quantin (Aug 06)
2015-08-06 15:21 GMT+02:00 Yang Luo <hsluoyb () gmail com>:
Hi Yang,
it now installs successfully. But I get a systematic crash when trying to
laod Wireshark (while so far I was not facing BSoD on my Windows 10 virtual
machine).
You will find the full memory dump here:
https://www.dropbox.com/s/n9oq6oajv411n3c/MEMORY.7z?dl=0
*******************************************************************************
*
*
*...
Re: [Wireshark-commits] master ef0bdbc: Cleanup a bunch of 802.11ad stuff.
Bill Meier (Aug 06)
Guy:
I've been working (slowly) on the 80211 dissector to fix some stuff* and
am about ready to commit the first part of same.
However, I'd like to wait until you've completed your review and changes
before I commit my changes.
Do you have more changes to this dissector immediately upcoming ?
Bill
stuff*
- Refactor handling of QoS Status field
- Don't do a (linear) table-lookup each time to find
the function to call to...
Re: Npcap 0.03 call for test
Yang Luo (Aug 06)
Hi Pascal,
This issue is because some parts of Npcap have been migrated to MSVC2010,
however Win10 RTM lacks VC2010 redist package. I have changed to static
link the libs, and tested on my Win10 RTM. Latest installer that has this
bug fixed is:
https://svn.nmap.org/nmap-exp/yang/NPcap-LWF/npcap-nmap-0.03-r5.exe
<https://svn.nmap.org/nmap-exp/yang/NPcap-LWF/npcap-nmap-0.03-r5.exe>
Cheers,
Yang
Re: MSVC 2015 failures
Michal Labedzki (Aug 06)
Try this: https://code.wireshark.org/review/#/c/9894/
Re: Npcap 0.03 call for test
Pascal Quantin (Aug 06)
2015-08-05 9:39 GMT+02:00 Yang Luo <hsluoyb () gmail com>:
Hi Yang,
I tried to install this npcap-nmap-0.03-r4 release on 2 different Windows
10 x64 French virtual machines which are up to date (with KB3081424
applied) and each time I get an error during a fresh installation of Npcap
with the following popup:
"Failed to create the npcap service for Win7 or Win8. Please try installing
Npcap again, or use the official Npcap installer...
Re: Npcap 0.03 call for test
Jim Young (Aug 06)
Hello Yang,
I've been doing some testing with Npcap 0.03-r4.
Current observations:
I can confirm the ping -t -l 65500 127.0.0.1 command is now working as expected.
Also I have been unable to trigger any BSODs.
On my primary Windows 8.1 system I can easily reproduce the installation stall during the -il step. But on a second
(more pristine) Windows 8.1 system I had no issues with repeatedly reinstalling npcap 0.03. If I can...
Snort — Everyone's favorite open source IDS, Snort. This archive combines the snort-announce, snort-devel, snort-users, and snort-sigs lists.
IPv6 Alerts documentation & Disable alerts
Gabriel Corre (Aug 12)
Hello,
I'm running snort 2.9.7.5 on a VPS (Debian 7.5).
I'm just trying some basics config and I'm receiving mainly this two alerts :
* [**] [116:278:1] (snort_decoder) WARNING: IPv6 packet with reserved multicast destination address [**]
[Classification: Generic Protocol Command Decode] [Priority: 3]header includes an invalid value for the "next header"
field
* [**] [116:281:1] (snort_decoder) WARNING: IPv6...
Re: Understanding the alert file
James Lay (Aug 11)
Those are "snort style" tcp flags:
https://isc.sans.edu/diary/Wireshark+TCP+Flags/19547
http://manual.snort.org/node463.html
James
------------------------------------------------------------------------------
Re: Understanding the alert file
Joel Esler (jesler) (Aug 11)
I think what you mean to have is:
alert tcp any any -> any 80 (msg:”Heartbeat”; content:”/testheartbeat123”; http_uri; classtype:not-suspicious; sid:1;)
Snort 2.9.2.2 on RaspberryPi
I am trying to understand the 'alert' file.
I am implementing a hearbeat rule so that I can check for lost packets while the system is being slammed. Here is the
rule:
alert tcp any any -> any 80 (msg:" Heartbeat"...
Understanding the alert file
usa ims (Aug 11)
Snort 2.9.2.2 on RaspberryPiI am trying to understand the 'alert' file.
I am implementing a hearbeat rule so that I can check for lost packets while the system is being slammed. Here is the
rule:
alert tcp any any -> any 80 (msg:" Heartbeat" content:/testheartbeat123"; classtype:not-suspicious;sid:1;)
I have a cron job being fired off every minute from a host on the EXTERNAL_NET:* * * * * perl -MLWP::UserAgent -e...
Snort Subscriber Rules Update 2015-08-11
Research (Aug 11)
Talos Snort Subscriber Rules Update
Synopsis:
Talos is aware of vulnerabilities affecting products from Microsoft
Corporation.
Details:
Microsoft Security Bulletin MS15-079:
Microsoft Internet Explorer suffers from programming errors that may
lead to remote code execution.
Rules to detect attacks targeting these vulnerabilities are included in
this release and are identified with GID 1, SIDs 35473 through 35482,
35487 through 35488, 35493...
Re: question about using SNORT to look at multiple NICs on one system
waldo kitty (Aug 11)
do you have each snort instance using its own identifier so that its work is
separated from the others?
do you have each snort sensor using its own directory for its output files?
do you have more than one barnyard2 instance running (eg: one for each snort)?
Re: Snort Rules Updates Manually W/O Pulled Pork/Oinkmaster
Joel Esler (jesler) (Aug 11)
You should use pulledpork. (Oinkmaster is dead).
pulledpork has several features included in it that we design the ruleset for (like flowbit resolution depending upon
policy configuration). So that’s the official recommendation.
question about using SNORT to look at multiple NICs on one system
Jacobi, Michael W CIV NSWCCD Philadelphia, 10432 (Aug 11)
All -
After a reorganization of our snort sensors, we have one system that is looking at traffic on multiple NICs and I seem
to be seeing detects on only one of them and I am trying to find why. Before the change, the sensors at these
locations were generating alerts. Currently, there are SNORT instances on this system for each of the NICs in question
and a quick TCPDUMP shows that all of the interfaces are seeing traffic. Besides having a...
Snort Rules Updates Manually W/O Pulled Pork/Oinkmaster
Scott Guthrie (Aug 11)
Hello,
I am new to using Snort and was curious about updates. Do I have to have Pulled Pork or Oinkmaster to update my rules?
Also, Are rules the only maintenance task I should perform to keep up to date? Should I be able to untar/gz the
snortrules-snapshot-*.tar.gz and put it in the proper directory or is there more to it and if so why?
Thanks for your time and consideration!...
Re: Integer overflow in perfmonitor preprocessor
Mike Cox (Aug 11)
Also related to the perfmonitor -- the manual says, for 'max_file_size',
"The minimum is 4096 bytes and the maximum is 2147483648 bytes" but there
is an off-by-one error because that maximum is not accepted by Snort:
Perfmonitor: Invalid argument to "max_file_size". The value must be
an integer between 4096 and 2147483647.
-Mike Cox
------------------------------------------------------------------------------
Re: Snort in IDS mode
Russ (Aug 11)
Hi Aman,
You can use the -i flag to get live traffic like this:
snort -i "en0 en1" -z 2 ...
This will open both interfaces on separate packet threads. To see other
options you may want:
snort -?
Hope that helps.
Russ
------------------------------------------------------------------------------
Snort in IDS mode
aman mangal (Aug 11)
Hi,
My name is Aman, I am a first year PhD student at Georgia Tech, USA. I want
to use *snort3 *for my research purposes and would like to run it in IDS
mode with more than one thread.
I am not able to figure out how to run snort in IDS mode without *-r *flag
and instead, capturing all the packets live. Please help me out.
Thank you
Aman Mangal
------------------------------------------------------------------------------
Re: http_methods error starting snort on solaris 9
waldo kitty (Aug 11)
for now, let's take things one step at the time... you posted the above first so
let's tackle it first...
https://www.snort.org/faq/how-do-i-ask-a-good-question-on-the-snort-list
please also note my sig below! keep the traffic on the list so that others can
help as well as learn...
Re: encrypted traffic
Victor Roemer (Aug 10)
Marcio, some explanations inline
Where do you see the words "Encrypted traffic verification", the keyword
being "verification".
Snort with ssl preproc can "detect" when ssl traffic finishes handshake
and goes encrypted; but once it encrypted, there is little that can be
done. Snort does not have built-in SSL decryptor, so tracking tcp
connection and evaluating IPS rules etc. is, in general, an waste of...
http_methods error starting snort on solaris 9
Lamont, Brian A. (Aug 10)
I get the error below when trying to start snort on solaris 9.
FATAL ERROR: /etc/snort/snort.conf(339) => Invalid keyword 'http_methods' for server configuration.
I have found other threads with the http_methods error and continued to get different errors with every change I made.
x47264-root> 396 #...
We also maintain archives for these lists (some are currently inactive):
Read some old-school private security digests such as Zardoz at SecurityDigest.Org
We're always looking for great network security related lists to archive. To suggest one, mail Fyodor.
|