CVE-2020-0863 - An Arbitrary File Read Vulnerability in Windows Diagnostic Tracking Service
https://itm4n.github.io/cve-2020-0863-windows-diagtrack-info-disclo/
π@malwr
https://itm4n.github.io/cve-2020-0863-windows-diagtrack-info-disclo/
π@malwr
itm4nβs blog
CVE-2020-0863 - An Arbitrary File Read Vulnerability in Windows Diagnostic Tracking Service
Although this vulnerability doesnβt directly result in a full elevation of privileges with code execution as NT AUTHORITY\SYSTEM, it is still quite interesting because of the exploitation βtricksβ involved. Diagnostic Tracking Service (a.k.a. Connected Userβ¦
#Splunk Boss of the SOC v3 Dataset Released!
https://www.splunk.com/en_us/blog/security/botsv3-dataset-released.html
π@malwr
https://www.splunk.com/en_us/blog/security/botsv3-dataset-released.html
BOTS 3.0 includes a Tools and Training scenario to help less experienced folks gain a foothold and to help everyone get familiar with the environment. The dataset also includes a cloud scenario that illustrates security issues that organizations commonly encounter when moving workloads to Amazon AWS and Microsoft Azure.π@malwr
Splunk
Boss of the SOC v3 Dataset Released! | Splunk
The tradition continues! We are happy to announce that the Boss of the SOC (BOTS) v3 dataset has been released under an open-source license and is available for download.
Reading content of RAM
I was looking at the way to read what kind of data is stored in my ram. But can't find a definitive answer. Can anyone help me out?
π£sahil098
Reading the data isn't so hard. You'd need a tool which can image and dump the data...ftk imager can do it for you and is free. There are loads of others.
Deciphering it on the other hand is more difficult. You might want to read up on volatility, or you could try running a scan across the memory image for file types of interest.
π€Briggykins
π@malwr
I was looking at the way to read what kind of data is stored in my ram. But can't find a definitive answer. Can anyone help me out?
π£sahil098
Reading the data isn't so hard. You'd need a tool which can image and dump the data...ftk imager can do it for you and is free. There are loads of others.
Deciphering it on the other hand is more difficult. You might want to read up on volatility, or you could try running a scan across the memory image for file types of interest.
π€Briggykins
π@malwr
Reddit
r/computerforensics on Reddit: Reading content of RAM
Posted by u/sahil098 - 7 votes and 6 comments
Cyber FastTrack Spring 2020 CTF Writeups
π£tsuto
Thank you so much! I made top 100 but with only about 50% complete and there were some that were on the "tip of my tongue" for hours but I couldn't secure the flag. First individual CTF for me so it was a learning experience but overall I had a blast.
This has been really helpful for me to learn from! Congrats on 1st and thanks a ton!
π€SentientOwl_
π@malwr
π£tsuto
Thank you so much! I made top 100 but with only about 50% complete and there were some that were on the "tip of my tongue" for hours but I couldn't secure the flag. First individual CTF for me so it was a learning experience but overall I had a blast.
This has been really helpful for me to learn from! Congrats on 1st and thanks a ton!
π€SentientOwl_
π@malwr
GitHub
GitHub - jselliott/CyberFastTrack_SP2020: A collection of writeups and solutions for the Cyber FastTrack Spring 2020 CTF
A collection of writeups and solutions for the Cyber FastTrack Spring 2020 CTF - jselliott/CyberFastTrack_SP2020
Cisco Password Cracking and Decrypting Guide
π£InfosecMatter
For type 7 passwords, you can create a key chain with a key-string 7, then do a show key-chain and it will output the type 7 password in cleartext
π€clearmoon247
π@malwr
π£InfosecMatter
For type 7 passwords, you can create a key chain with a key-string 7, then do a show key-chain and it will output the type 7 password in cleartext
π€clearmoon247
π@malwr
InfosecMatter
Cisco Password Cracking and Decrypting Guide - InfosecMatter
This guide covers common Cisco password types (0, 4, 5, 7, 8 and 9) and provides instructions on how to decrypt then or crack them using Hashcat or John the Ripper
X86 Inline Assembly
Hello!
I'm new to inline assembly, whilst I do have experience with assembly, it is mostly geared towards programming micro controllers. I'm trying to get an assignment done, and I have been researching inline assembly. My goal is to successfully implement the functionality of what getchar and putchar would do using inline assembly.(Reading a character from stdin, and putting a character on stdout).
I don't know if this means anything but I'm running this on a Linux machine, compiling with gcc.
Apparently it uses AT&T style as opposed to Intel style, This must use x86 inline assembly.
I'm trying to get the steps down.
Write to std_out
It seems I have to load, register %%eax with 4 (the call for sys\_write).
Load %%ebx with the file descriptor, in this case 1.
Load %%edx with the size, in this case 1.
Load %%ecx with a const char *, a pointer to the character.
My first implementation is here:
This code above doesn't output anything, but ret is equivalent to -14/
A second implementation, without using extended Assembly
This code doesn't compile, I get a invalid 'asm': operand number out of range.
I'm trying to work through this before attempting writing putchar, as I may have foundational errors.
I'd appreciate any possible aid/hints!
Thanks in advance!
π£StandardSBUStudent
Are you compiling for 32-bit or 64-bit? They have different system call numbers and calling conventions.
For 32-bit: Pass parameters in eax/ebx/ecx/edx (i.e. syscall number in eax) and use
For 64-bit: Pass parameters in rax/rdi/rsi/rdx and use
For your second example note that the first operand is
π€0xa0000
π@malwr
Hello!
I'm new to inline assembly, whilst I do have experience with assembly, it is mostly geared towards programming micro controllers. I'm trying to get an assignment done, and I have been researching inline assembly. My goal is to successfully implement the functionality of what getchar and putchar would do using inline assembly.(Reading a character from stdin, and putting a character on stdout).
I don't know if this means anything but I'm running this on a Linux machine, compiling with gcc.
Apparently it uses AT&T style as opposed to Intel style, This must use x86 inline assembly.
I'm trying to get the steps down.
Write to std_out
It seems I have to load, register %%eax with 4 (the call for sys\_write).
Load %%ebx with the file descriptor, in this case 1.
Load %%edx with the size, in this case 1.
Load %%ecx with a const char *, a pointer to the character.
My first implementation is here:
int main() { char p = 'p'; int ret; __asm__ __volatile__( "syscall" :"=a"(ret) :"a"(4), "b"(1), "c"(&p), "d"(1) : "memory" ); return 0; }This code above doesn't output anything, but ret is equivalent to -14/
A second implementation, without using extended Assembly
int main() { char c = 'c'; char * pointer = &c; __asm__ __volatile__( "mov $1, %%ebx\t\n" "mov $1, %%edx\t\n" "mov %1, %%ecx\t\n" "mov $4, %%eax\t\n" "syscall" : :"r"(pointer) : ); // printf("foo+bar=%d\n", foo); return 0; }This code doesn't compile, I get a invalid 'asm': operand number out of range.
I'm trying to work through this before attempting writing putchar, as I may have foundational errors.
I'd appreciate any possible aid/hints!
Thanks in advance!
π£StandardSBUStudent
Are you compiling for 32-bit or 64-bit? They have different system call numbers and calling conventions.
For 32-bit: Pass parameters in eax/ebx/ecx/edx (i.e. syscall number in eax) and use
int $0x80 to execute. sys_write is 4.For 64-bit: Pass parameters in rax/rdi/rsi/rdx and use
syscall. sys_write is 1.For your second example note that the first operand is
%0. See hereπ€0xa0000
π@malwr
reddit
X86 Inline Assembly
Hello! I'm new to inline assembly, whilst I do have experience with assembly, it is mostly geared towards programming micro controllers. I'm...
Escalate My Privileges: 1 walkthrough Vulnhub CTF (Easy-Beginners) Let's get our hands dirty!!
π£ATTACKERSA
π@malwr
π£ATTACKERSA
π@malwr
YouTube
Escalate My Privileges: 1 walkthrough Vulnhub (For Beginners)
PHP Shell : https://raw.githubusercontent.com/pentestmonkey/php-reverse-shell/master/php-reverse-shell.php Download Link : https://www.vulnhub.com/entry/esca...
Saudi spies tracked U.S. phones using flaws the FCC failed to fix for years
π£clash1111
Let me guess - it has something to do with an ancient SS7 vulnerability they should've fixed ages ago.
π€deadface008
lol thats what you get for leaving holes open so you can keep eyes on your citizens
π€d33pnull
And peiple want to end end-to-end encryption? Like fuck off.
π€superking75
π@malwr
π£clash1111
Let me guess - it has something to do with an ancient SS7 vulnerability they should've fixed ages ago.
π€deadface008
lol thats what you get for leaving holes open so you can keep eyes on your citizens
π€d33pnull
And peiple want to end end-to-end encryption? Like fuck off.
π€superking75
π@malwr
Reverse Engineering Introduction Walkthrough - Intro_Rev/Rev1 CSCG 2020
https://youtu.be/28JHPOUZvDw
#ELF binary analysis, with lots of tools introduced
π@malwr
https://youtu.be/28JHPOUZvDw
#ELF binary analysis, with lots of tools introduced
π@malwr
YouTube
Reverse Engineering Introduction Walkthrough - intro_rev/rev1 CSCG 2020
Introduction video for the intro to reversing challenges of CSCG 2020: https://www.cscg.de/cscg/teilnehmen/
Challenge intro_rev/rev1: https://earth.2020.cscg.de/tasks/Intro%20to%20Reversing%201
Binary Exploitation playlist (contains videos about reversingβ¦
Challenge intro_rev/rev1: https://earth.2020.cscg.de/tasks/Intro%20to%20Reversing%201
Binary Exploitation playlist (contains videos about reversingβ¦
Shodan Command line A Step-by-Step walkthrough
Shodan Command line in this article and video, I show you what you can do, and the benefit of using the Shodan command line in your terminal. Searching for Vulnerabilities to port scanning, there is an incredible amount possible with Shodan.
Article:
https://hackingpassion.com/shodan-command-line-a-step-by-step-walkthrough/
Video:
https://youtu.be/ZAyfWtF0-VI
https://preview.redd.it/qex79jcpdsp41.png?width=1299&format=png&auto=webp&s=794a656483153c2b72cfafec337bd64d0bc0cd48
π£BullsEye_0
π@malwr
Shodan Command line in this article and video, I show you what you can do, and the benefit of using the Shodan command line in your terminal. Searching for Vulnerabilities to port scanning, there is an incredible amount possible with Shodan.
Article:
https://hackingpassion.com/shodan-command-line-a-step-by-step-walkthrough/
Video:
https://youtu.be/ZAyfWtF0-VI
https://preview.redd.it/qex79jcpdsp41.png?width=1299&format=png&auto=webp&s=794a656483153c2b72cfafec337bd64d0bc0cd48
π£BullsEye_0
π@malwr
HackingPassion.com : root@HackingPassion.com-[~]
Shodan Command Line a Step by Step Walkthrough
Shodan Command-line in this article and video, I show you the benefit of using the Shodan command line. From Vulnerability to port scanning.