Article: Converting NMAP XML Files to HTML with xsltproc - published almost 4 years ago. Content: NMAP is a wonderful network scanner and its ability to log scan data to files, specifically XML, helps quite a bit. This enables the scan data to be parsed by other tools such as Metasploit’s db_import or even NMAP’s own Zenmap GUI. While XML is great for parsing, it’s not really easy for humans to read. I have found several people are unaware of the fac... /blog/2021/01/converting-nmap-xml-files-to-html-with-xsltproc.html Published: 2021 01 14 16:30:00 Received: 2021 06 06 09:04:36 Feed: Secure Ideas: Professionally Evil! Source: Secure Ideas: Professionally Evil! Category: Cyber Security Topic: Cyber Security |
Article: LD_PRELOAD: How to Run Code at Load Time - published almost 4 years ago. Content: Today I want to continue the series on using LD_PRELOAD. In previous posts, we covered how to inject a shared object binary into a process, and use that to hijack a library function call to run our own code. This is great when we want to overwrite the behavior of external library calls in a process, but we would have to wait for that call to happen fi... /blog/2021/02/ld_preload-how-to-run-code-at-load-time.html Published: 2021 02 24 15:40:00 Received: 2021 06 06 09:04:36 Feed: Secure Ideas: Professionally Evil! Source: Secure Ideas: Professionally Evil! Category: Cyber Security Topic: Cyber Security |
|
Article: Three Excellent API Security Practices Most People Neglect - published over 3 years ago. Content: We are very much in the age of APIs. From widely-used single-purpose products like Slack to cloud-based solutions like Amazon Web Services (AWS) and Microsoft Azure, APIs are used to drive business processes in all kinds of industries, every day. For tech companies, whether you’re doing a monolithic back-end, containerized microservices, or serverless archi... /blog/2021/04/three-excellent-api-security-practices-most-people-neglect.html Published: 2021 04 15 14:00:36 Received: 2021 06 06 09:04:36 Feed: Secure Ideas: Professionally Evil! Source: Secure Ideas: Professionally Evil! Category: Cyber Security Topic: Cyber Security |
|
Article: A Hacker’s Tour of the X86 CPU Architecture - published over 3 years ago. Content: Overview The Intel x86 CPU architecture is one of the most prolific CPU architectures for desktops, laptops, and servers. While other architectures exist and are even taking some market share with mobile devices such as smartphones and even Apple begin including its ARM M1 chip in newer Macbooks and Mac Mini, this one still stands as the default CPU arc... /blog/2021/04/a-hackers-tour-of-the-x86-cpu-architecture.html Published: 2021 04 20 15:15:43 Received: 2021 06 06 09:04:36 Feed: Secure Ideas: Professionally Evil! Source: Secure Ideas: Professionally Evil! Category: Cyber Security Topic: Cyber Security |
Article: Linux X86 Assembly – How to Build a Hello World Program in NASM - published over 3 years ago. Content: Overview A processor understands bytecode instructions specific to that architecture. We as humans use mnemonics to make building these instructions easier than remembering a bunch of binary codes. These mnemonics are known as assembly instructions. This is one of the lowest levels of programming that can be done. This programming is a bit of a lost ... /blog/2021/05/linux-x86-assembly-how-to-build-a-hello-world-program-in-nasm.html Published: 2021 05 04 14:55:33 Received: 2021 06 06 09:04:36 Feed: Secure Ideas: Professionally Evil! Source: Secure Ideas: Professionally Evil! Category: Cyber Security Topic: Cyber Security |
|
Article: AppSec Cheat Code: Shift Left, Shift Right, Up, Down & Start - published over 3 years ago. Content: Seamless and unobtrusive security is the future. We are huge advocates of shifting left and moving security testing earlier in the development process. Leif Dreizler wrote a great article suggesting that not only do we need to shift security left, but shift engineering right. I agree, but why stop there. We all need to cultivate a culture of consistent coll... /blog/2021/05/appsec-cheat-code-shift-left-shift-right-up-down-start.html Published: 2021 05 04 14:57:50 Received: 2021 06 06 09:04:36 Feed: Secure Ideas: Professionally Evil! Source: Secure Ideas: Professionally Evil! Category: Cyber Security Topic: Cyber Security |
|
Article: Linux X86 Assembly – How to Build a Hello World Program in GAS - published over 3 years ago. Content: Overview In the last tutorial, we covered how to build a 32-bit x86 Hello World program in NASM. Today, we will cover how to do the same thing, but this time using the GAS toolchain instead. This will allow us to review the differences in the source code syntax and structure, as well as the difference in the build process. Prerequisite Knowledge ... /blog/2021/05/linux-x86-assembly-how-to-build-a-hello-world-program-in-gas.html Published: 2021 05 11 16:18:46 Received: 2021 06 06 09:04:36 Feed: Secure Ideas: Professionally Evil! Source: Secure Ideas: Professionally Evil! Category: Cyber Security Topic: Cyber Security |
Article: Run as Admin: Executive Order on Cybersecurity - published over 3 years ago. Content: On May 12, 2021, President Biden issued an executive order on cybersecurity. This new order combines many trends we’re already seeing in the Fortune 500 and brings them into the public sector as well. President Trump issued similar executive orders including one in 2017, another in 2018, two in 2019 and three in 2020, but we will cover those at a different... /blog/2021/05/run-as-admin-executive-order-on-cybersecurity.html Published: 2021 05 14 15:44:34 Received: 2021 06 06 09:04:36 Feed: Secure Ideas: Professionally Evil! Source: Secure Ideas: Professionally Evil! Category: Cyber Security Topic: Cyber Security |
|
Article: The Best Way to Capture Traffic in 2021 - published over 3 years ago. Content: There are times when you need to capture some network traffic. Maybe you’re troubleshooting a communication issue or maybe you’re doing something a little more suspect on a penetration test (looking for that clear text communication floating on the network to a host). On top of needing a capture, you may not want to install a third party capture tool like... /blog/2021/05/the-best-way-to-capture-traffic-in-2021.html Published: 2021 05 25 16:21:04 Received: 2021 06 06 09:04:36 Feed: Secure Ideas: Professionally Evil! Source: Secure Ideas: Professionally Evil! Category: Cyber Security Topic: Cyber Security |
|
Article: Linux X86 Assembly – How to Make Our Hello World Usable as an Exploit Payload - published over 3 years ago. Content: Overview In the last two tutorials, we built a Hello World program in NASM and GAS for x86 assembly. While this can help us learn x86 assembly, it isn’t viable as a payload for use in exploits in its current form. Today’s blog will look into what those issues are, how they impact the code’s use as a payload, and what we can do to address those issues. ... /blog/2021/06/linux-x86-assembly-how-to-make-our-hello-world-usable-as-an-exploit-payload.html Published: 2021 06 01 14:13:33 Received: 2021 06 06 09:04:36 Feed: Secure Ideas: Professionally Evil! Source: Secure Ideas: Professionally Evil! Category: Cyber Security Topic: Cyber Security |
Article: metatool.py - published over 3 years ago. Content: metatool.py is a tool to help with the analysis of Metasploit or Cobalt Strike URLs. More info can be found in my SANS Internet Storm Center diary entry “Finding Metasploit & Cobalt Strike URLs“. It is still in my Github beta repository here. ... https://blog.didierstevens.com/2021/04/18/metatool-py/ Published: 2021 04 18 17:56:33 Received: 2021 06 06 09:04:35 Feed: Didier Stevens Source: Didier Stevens Category: Cyber Security Topic: Cyber Security |
|
Article: Lua CSV Wireshark Dissector - published over 3 years ago. Content: In December 2020 I provided online Wireshark training to one of our NVISO clients. During the second day, when we cover the development of custom dissectors written in Lua, a question about CSV data came up. When the data exchanged over TCP, for example, has the CSV format (fields separated by a separator), how can I write a dissector for that? While answeri... https://blog.didierstevens.com/2021/04/19/lua-csv-wireshark-dissector/ Published: 2021 04 19 00:00:00 Received: 2021 06 06 09:04:34 Feed: Didier Stevens Source: Didier Stevens Category: Cyber Security Topic: Cyber Security |
|
Article: isodump.py - published over 3 years ago. Content: This is a new tool (beta) to analyze ISO files. I made this for a webinar I presented: a demo on how to use my templates to create your own tools. isodump.py is in my Github beta repository. The complete webinar is here, if you want to jump directly to the demo where I explain how to make a tool like isodump.py, go here. ... https://blog.didierstevens.com/2021/04/25/isodump-py/ Published: 2021 04 25 10:13:54 Received: 2021 06 06 09:04:34 Feed: Didier Stevens Source: Didier Stevens Category: Cyber Security Topic: Cyber Security |
Article: Quickpost: Decrypting Cobalt Strike Traffic - published over 3 years ago. Content: I have been looking at several samples of Cobalt Strike beacons used in malware attacks. Although work is still ongoing, I already want to share my findings. Cobalt Strike beacons communicating over HTTP encrypt their data with AES (unless a trial version is used). I found code to decrypt/encrypt such data in the PyBeacon and Geacon Github repositories. ... https://blog.didierstevens.com/2021/04/26/quickpost-decrypting-cobalt-strike-traffic/ Published: 2021 04 26 00:00:00 Received: 2021 06 06 09:04:34 Feed: Didier Stevens Source: Didier Stevens Category: Cyber Security Topic: Cyber Security |
|
Article: Overview of Content Published in April - published over 3 years ago. Content: Here is an overview of content I published in April: Blog posts: metatool.py Lua CSV Wireshark Dissector isodump.py Quickpost: Decrypting Cobalt Strike Traffic YouTube videos: YARA and CyberChef YARA and CyberChef: ZIP Decoding Cobalt Strike Traffic Lua CSV Wireshark Dissector The Security Toolsmith (NVISO Brown Bag 2021) Videoblog posts: YARA and Cyber... https://blog.didierstevens.com/2021/05/02/overview-of-content-published-in-april-6/ Published: 2021 05 02 19:16:58 Received: 2021 06 06 09:04:34 Feed: Didier Stevens Source: Didier Stevens Category: Cyber Security Topic: Cyber Security |
|
Article: Update: 1768.py Version 0.0.6 - published over 3 years ago. Content: This new version of 1768.py, my tool to analyze Cobalt Stike beacons, has fixes, support for more encodings, and an option to output the config in JSON format. 1768_v0_0_6.zip (https) MD5: EB9C949BB7B5DD3EF9ECEBF7F3C21184 SHA256: 3EC0BB7B41CC5C0E1534F09BAE67D62B220F8D83A7F02EC0F856F8741F86EB31 ... https://blog.didierstevens.com/2021/05/22/update-1768-py-version-0-0-6/ Published: 2021 05 22 15:06:15 Received: 2021 06 06 09:04:34 Feed: Didier Stevens Source: Didier Stevens Category: Cyber Security Topic: Cyber Security |
Article: Update: re-search.py Version 0.0.17 - published over 3 years ago. Content: This new version of re-search.py adds gzip support and filtering of private IPv4 addresses: re-search_V0_0_17.zip (https) MD5: 8945F435BDA03D73EF7A2BA1AA64A65E SHA256: 0D74709B9F26FC7F6EEADAEE1BAA3AF7AADAA618F88B1C267BA5A063C8E3D997 ... https://blog.didierstevens.com/2021/05/23/update-re-search-py-version-0-0-17/ Published: 2021 05 23 00:00:00 Received: 2021 06 06 09:04:34 Feed: Didier Stevens Source: Didier Stevens Category: Cyber Security Topic: Cyber Security |
|
Article: Update: base64dump.py Version 0.0.14 - published over 3 years ago. Content: This new version of base64dump.py supports a new encoding: NETBIOS Name encoding. NETBIOS Name encoding is very similar to hexadecimal encoding: in stead of hexadecimal digits 0-9 and a-f, letters A-P are used. I encountered this in DNS TXT records of a Cobalt Strike DNS stager. More on that later. base64dump_V0_0_14.zip (https)MD5: 35BF4900BED... https://blog.didierstevens.com/2021/05/25/update-base64dump-py-version-0-0-14/ Published: 2021 05 25 00:00:00 Received: 2021 06 06 09:04:34 Feed: Didier Stevens Source: Didier Stevens Category: Cyber Security Topic: Cyber Security |
|
Article: New Tool: cs-dns-stager.py - published over 3 years ago. Content: cs-dns-stager.py is a quick & dirty tool I wrote to retrieve a Cobalt Strike DNS beacon from its server, if you only have the IP address of said server. If you want to know more about Cobalt Strike and DNS, watch this video I recorded: ... https://blog.didierstevens.com/2021/05/30/new-tool-cs-dns-stager-py/ Published: 2021 05 30 17:59:01 Received: 2021 06 06 09:04:34 Feed: Didier Stevens Source: Didier Stevens Category: Cyber Security Topic: Cyber Security |
Article: Overview of Content Published in May - published over 3 years ago. Content: Here is an overview of content I published in May: Blog posts: Update: 1768.py Version 0.0.6 Update: re-search.py Version 0.0.17 Update: base64dump.py Version 0.0.14 New Tool: cs-dns-stager.py YouTube videos: Making Sense Of Encrypted Cobalt Strike Traffic Cobalt Strike & DNS – Part 1 Videoblog posts: Making Sense Of Encrypted Cobalt Strike Traffi... https://blog.didierstevens.com/2021/06/04/overview-of-content-published-in-may-6/ Published: 2021 06 04 00:00:00 Received: 2021 06 06 09:04:34 Feed: Didier Stevens Source: Didier Stevens Category: Cyber Security Topic: Cyber Security |
|
Article: AA21-042A: Compromise of U.S. Water Treatment Facility - published almost 4 years ago. Content: https://us-cert.cisa.gov/ncas/alerts/aa21-042a Published: 2021 02 11 19:15:49 Received: 2021 06 06 09:03:33 Feed: US-CERT Technical Cyber Security Alerts Source: US-CERT Technical Cyber Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: AA21-048A: AppleJeus: Analysis of North Korea’s Cryptocurrency Malware - published almost 4 years ago. Content: https://us-cert.cisa.gov/ncas/alerts/aa21-048a Published: 2021 02 17 16:00:00 Received: 2021 06 06 09:03:33 Feed: US-CERT Technical Cyber Security Alerts Source: US-CERT Technical Cyber Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: AA21-055A: Exploitation of Accellion File Transfer Appliance - published almost 4 years ago. Content: https://us-cert.cisa.gov/ncas/alerts/aa21-055a Published: 2021 02 24 14:00:00 Received: 2021 06 06 09:03:33 Feed: US-CERT Technical Cyber Security Alerts Source: US-CERT Technical Cyber Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: AA21-062A: Mitigate Microsoft Exchange Server Vulnerabilities - published over 3 years ago. Content: https://us-cert.cisa.gov/ncas/alerts/aa21-062a Published: 2021 03 03 18:12:30 Received: 2021 06 06 09:03:33 Feed: US-CERT Technical Cyber Security Alerts Source: US-CERT Technical Cyber Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: AA21-076A: TrickBot Malware - published over 3 years ago. Content: https://us-cert.cisa.gov/ncas/alerts/aa21-076a Published: 2021 03 17 15:00:00 Received: 2021 06 06 09:03:33 Feed: US-CERT Technical Cyber Security Alerts Source: US-CERT Technical Cyber Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: AA21-077A: Detecting Post-Compromise Threat Activity Using the CHIRP IOC Detection Tool - published over 3 years ago. Content: https://us-cert.cisa.gov/ncas/alerts/aa21-077a Published: 2021 03 18 18:00:00 Received: 2021 06 06 09:03:33 Feed: US-CERT Technical Cyber Security Alerts Source: US-CERT Technical Cyber Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: AA21-110A: Exploitation of Pulse Connect Secure Vulnerabilities - published over 3 years ago. Content: https://us-cert.cisa.gov/ncas/alerts/aa21-110a Published: 2021 04 20 15:03:59 Received: 2021 06 06 09:03:33 Feed: US-CERT Technical Cyber Security Alerts Source: US-CERT Technical Cyber Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: AA21-116A: Russian Foreign Intelligence Service (SVR) Cyber Operations: Trends and Best Practices for Network Defenders - published over 3 years ago. Content: https://us-cert.cisa.gov/ncas/alerts/aa21-116a Published: 2021 04 26 15:00:00 Received: 2021 06 06 09:03:33 Feed: US-CERT Technical Cyber Security Alerts Source: US-CERT Technical Cyber Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: AA21-131A: DarkSide Ransomware: Best Practices for Preventing Business Disruption from Ransomware Attacks - published over 3 years ago. Content: https://us-cert.cisa.gov/ncas/alerts/aa21-131a Published: 2021 05 11 19:00:00 Received: 2021 06 06 09:03:33 Feed: US-CERT Technical Cyber Security Alerts Source: US-CERT Technical Cyber Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: AA21-148A: Sophisticated Spearphishing Campaign Targets Government Organizations, IGOs, and NGOs - published over 3 years ago. Content: https://us-cert.cisa.gov/ncas/alerts/aa21-148a Published: 2021 05 28 22:29:15 Received: 2021 06 06 09:03:33 Feed: US-CERT Technical Cyber Security Alerts Source: US-CERT Technical Cyber Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: More rss feeds from SecurityFocus Content: http://www.securityfocus.com/rss/index.shtml Published: : Received: 2021 06 06 09:03:33 Feed: SecurityFocus Vulnerabilities Source: SecurityFocus Vulnerabilities Category: Alerts Topic: Vulnerabilities |
Article: Bugtraq: BugTraq Shutdown Content: http://www.securityfocus.com/archive/1/542247 Published: : Received: 2021 06 06 09:03:33 Feed: SecurityFocus Vulnerabilities Source: SecurityFocus Vulnerabilities Category: Alerts Topic: Vulnerabilities |
|
Article: Bugtraq: Re: [SECURITY] [DSA 4628-1] php7.0 security update Content: http://www.securityfocus.com/archive/1/542250 Published: : Received: 2021 06 06 09:03:33 Feed: SecurityFocus Vulnerabilities Source: SecurityFocus Vulnerabilities Category: Alerts Topic: Vulnerabilities |
|
Article: Bugtraq: Re: BugTraq Shutdown Content: http://www.securityfocus.com/archive/1/542249 Published: : Received: 2021 06 06 09:03:33 Feed: SecurityFocus Vulnerabilities Source: SecurityFocus Vulnerabilities Category: Alerts Topic: Vulnerabilities |
Article: Bugtraq: On Second Thought... Content: http://www.securityfocus.com/archive/1/542248 Published: : Received: 2021 06 06 09:03:33 Feed: SecurityFocus Vulnerabilities Source: SecurityFocus Vulnerabilities Category: Alerts Topic: Vulnerabilities |
|
Article: Vuln: KDE KAuth CVE-2017-8422 Local Privilege Escalation Vulnerability - published over 5 years ago. Content: http://www.securityfocus.com/bid/98412 Published: 2019 07 25 00:00:00 Received: 2021 06 06 09:03:33 Feed: SecurityFocus Vulnerabilities Source: SecurityFocus Vulnerabilities Category: Alerts Topic: Vulnerabilities |
|
Article: Vuln: LibreOffice Remote Code Execution and Unauthorized Access Vulnerabilities - published over 5 years ago. Content: http://www.securityfocus.com/bid/109374 Published: 2019 07 26 00:00:00 Received: 2021 06 06 09:03:33 Feed: SecurityFocus Vulnerabilities Source: SecurityFocus Vulnerabilities Category: Alerts Topic: Vulnerabilities |
Article: Vuln: Qualcomm Components CVE-2019-2307 Integer Underflow Vulnerability - published over 5 years ago. Content: http://www.securityfocus.com/bid/109383 Published: 2019 07 26 00:00:00 Received: 2021 06 06 09:03:33 Feed: SecurityFocus Vulnerabilities Source: SecurityFocus Vulnerabilities Category: Alerts Topic: Vulnerabilities |
|
Article: Vuln: Jenkins Credentials Binding Plugin CVE-2019-1010241 Information Disclosure Vulnerability - published over 5 years ago. Content: http://www.securityfocus.com/bid/109320 Published: 2019 07 26 00:00:00 Received: 2021 06 06 09:03:33 Feed: SecurityFocus Vulnerabilities Source: SecurityFocus Vulnerabilities Category: Alerts Topic: Vulnerabilities |
|
Article: Critical Patch Update - January 2005 - published about 19 years ago. Content: http://www.oracle.com/technology/deploy/security/pdf/cpu-jan-2005_advisory.pdf Published: 2005 10 18 22:28:22 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Critical Patch Update - April 2005 - published about 19 years ago. Content: http://www.oracle.com/technology/deploy/security/pdf/cpuapr2005.pdf Published: 2005 10 18 22:28:17 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Critical Patch Update - July 2005 - published over 19 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujul2005-090619.html Published: 2005 07 12 19:46:55 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Critical Patch Update - October 2005 - published about 19 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuoct2005-090497.html Published: 2005 10 18 22:25:52 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Critical Patch Update - January 2006 - published almost 19 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujan2006-082403.html Published: 2006 01 18 00:20:10 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Critical Patch Update - April 2006 - published over 18 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuapr2006-090826.html Published: 2006 04 18 20:42:18 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Critical Patch Update - October 2006 - published about 18 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuoct2006-095368.html Published: 2006 10 17 18:37:45 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Critical Patch Update - January 2007 - published almost 18 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujan2007-101493.html Published: 2007 01 16 23:35:52 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Critical Patch Update - April 2007 - published over 17 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuapr2007-090632.html Published: 2007 04 18 15:57:25 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Critical Patch Update - July 2007 - published over 17 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuoct2007-092913.html Published: 2007 07 17 20:21:34 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Critical Patch Update - October 2007 - published about 17 years ago. Content: http://www.oracle.com/technology/deploy/security/critical-patch-updates/cpuoct2007.html Published: 2007 10 16 20:47:15 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Critical Patch Update - January 2008 - published almost 17 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujan2008-086860.html Published: 2008 01 15 22:55:07 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Critical Patch Update - April 2008 - published over 16 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuapr2008-082075.html Published: 2008 04 15 22:13:44 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Critical Patch Update - July 2008 - published over 16 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujul2008-090335.html Published: 2008 07 15 20:01:17 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Critical Patch Update - October 2008 - published about 16 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuoct2008-100299.html Published: 2008 10 15 18:53:46 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Critical Patch Update - January 2009 - published over 15 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujan2009-097901.html Published: 2009 04 14 22:40:50 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Critical Patch Update - April 2009 - published over 15 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuapr2009-099563.html Published: 2009 04 14 22:40:58 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Critical Patch Update - July 2009 - published over 15 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujul2009-091332.html Published: 2009 07 16 01:00:00 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Critical Patch Update - October 2009 - published about 15 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuoct2009-096303.html Published: 2009 10 20 15:39:36 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Critical Patch Update - January 2010 - published almost 15 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujan2010-084891.html Published: 2010 01 13 18:05:22 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Security Alert for CVE-2010-0073 - February 2010 - published almost 15 years ago. Content: http://www.oracle.com/technetwork/topics/security/alert-cve-2010-0073-099291.html Published: 2010 02 04 20:00:00 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Critical Patch Update (CPU) - April 2010 - published over 14 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuapr2010-099504.html Published: 2010 04 13 21:01:14 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Oracle Critical Patch Update (CPU) - July 2010 - published over 14 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujul2010-155308.html Published: 2010 07 14 19:35:31 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Critical Patch Update (CPU) - October 2010 - published about 14 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuoct2010-175626.html Published: 2010 10 12 16:07:09 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Critical Patch Update (CPU) - January 2011 - published almost 14 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujan2011-194091.html Published: 2011 01 18 19:40:56 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Oracle Java SE and Java for Business Critical Patch Update Advisory - February 2011 - published almost 14 years ago. Content: http://www.oracle.com/technetwork/topics/security/javacpufeb2011-304611.html Published: 2011 02 15 22:00:00 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Critical Patch Update (CPU) - April 2011 - published over 13 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuapr2011-301950.html Published: 2011 04 19 20:00:00 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Java SE Critical Patch Update Advisory - June 2011 - published over 13 years ago. Content: http://www.oracle.com/technetwork/topics/security/javacpujune2011-313339.html Published: 2011 06 07 22:18:00 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Oracle Critical Patch Update (CPU) Advisory - July 2011 - published over 13 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujuly2011-313328.html Published: 2011 07 19 22:45:34 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Security Alert for CVE-2011-3192 - published about 13 years ago. Content: http://www.oracle.com/technetwork/topics/security/alerts-086861.html#SecurityAlerts Published: 2011 09 15 21:22:26 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Critical Patch Update (CPU) Advisory - October 2011 - published about 13 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuoct2011-330135.html Published: 2011 10 24 18:33:06 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Oracle Critical Patch Update (CPU) Advisory - January 2012 - published almost 13 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujan2012-366304.html Published: 2012 01 17 20:44:45 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Security Alert for CVE-2011-5035 - published almost 13 years ago. Content: http://www.oracle.com/technetwork/topics/security/alert-cve-2011-5035-1506603.html Published: 2012 01 31 21:20:32 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Java SE Critical Patch Update Advisory - February 2012 - published almost 13 years ago. Content: http://www.oracle.com/technetwork/topics/security/javacpufeb2012-366318.html Published: 2012 02 14 20:00:00 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Oracle Critical Patch Update (CPU) Advisory - April 2012 - published over 12 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuapr2012-366314.html Published: 2012 04 18 15:40:13 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Security Alert for CVE-2012-1675 - published over 12 years ago. Content: http://www.oracle.com/technetwork/topics/security/alert-cve-2012-1675-1608180.html Published: 2012 04 30 20:01:09 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Java SE Critical Patch Update Advisory - June 2012 - published over 12 years ago. Content: http://www.oracle.com/technetwork/topics/security/javacpujun2012-1515912.html Published: 2012 06 12 20:00:00 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Oracle Critical Patch Update (CPU) Advisory - July 2012 - published over 12 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujul2012-392727.html Published: 2012 07 19 22:15:29 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Security Alert for CVE-2012-3132 - 10 Aug 2012 - published over 12 years ago. Content: http://www.oracle.com/technetwork/topics/security/alert-cve-2012-3132-1721017.html Published: 2012 08 10 19:14:29 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Security Alert for CVE-2012-4681 - 30 Aug 2012 - published about 12 years ago. Content: http://www.oracle.com/technetwork/topics/security/alert-cve-2012-4681-1835715.html Published: 2012 08 30 19:26:29 Received: 2021 06 06 09:03:28 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Oracle Java SE Critical Patch Update Advisory - October 2012 - published about 12 years ago. Content: http://www.oracle.com/technetwork/topics/security/javacpuoct2012-1515924.html Published: 2012 10 16 19:26:29 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Critical Patch Update Advisory - October 2012 - published about 12 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuoct2012-1515893.html Published: 2012 10 16 19:26:29 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Security Alert for CVE-2013-0422 - 13 Jan 2013 - published almost 12 years ago. Content: http://www.oracle.com/technetwork/topics/security/alert-cve-2013-0422-1896849.html Published: 2013 01 13 19:30:54 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Oracle Critical Patch Update Advisory - January 2013 - published almost 12 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujan2013-1515902.html Published: 2013 01 15 19:30:54 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Java SE Critical Patch Update Advisory - February 2013 - published almost 12 years ago. Content: http://www.oracle.com/technetwork/topics/security/javacpufeb2013-1841061.html Published: 2013 02 01 19:30:54 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Updated Release of the Oracle Java SE Critical Patch Update - February 2013 - published almost 12 years ago. Content: http://www.oracle.com/technetwork/topics/security/javacpufeb2013update-1905892.html Published: 2013 02 19 19:30:54 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Oracle Security Alert for CVE-2013-1493 - 04 Mar 2013 - published over 11 years ago. Content: http://www.oracle.com/technetwork/topics/security/alert-cve-2013-1493-1915081.html Published: 2013 03 04 19:30:54 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Critical Patch Update Advisory - April 2013 - published over 11 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuapr2013-1899555.html Published: 2013 04 16 19:30:54 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Java SE Critical Patch Update Advisory - April 2013 - published over 11 years ago. Content: http://www.oracle.com/technetwork/topics/security/javacpuapr2013-1928497.html Published: 2013 04 16 19:30:54 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Oracle Java SE Critical Patch Update Advisory - June 2013 - published over 11 years ago. Content: http://www.oracle.com/technetwork/topics/security/javacpujun2013-1899847.html Published: 2013 06 18 19:30:54 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Critical Patch Update Advisory - July 2013 - published over 11 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujuly2013-1899826.html Published: 2013 07 16 19:30:54 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Critical Patch Update Advisory - October 2013 - published about 11 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuoct2013-1899837.html Published: 2013 10 15 19:30:54 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
Article: Oracle Critical Patch Update Advisory - January 2014 - published almost 11 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpujan2014-1972949.html Published: 2014 01 14 19:30:54 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Article: Oracle Critical Patch Update Advisory - April 2014 - published over 10 years ago. Content: http://www.oracle.com/technetwork/topics/security/cpuapr2014-1972952.html Published: 2014 04 15 19:30:54 Received: 2021 06 06 09:03:27 Feed: Oracle Security Alerts Source: Oracle Security Alerts Category: Alerts Topic: Vulnerabilities |
|
Click to Open Code Editor