Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
HackTheBox — Late Writeup
https://cdn-images-1.medium.com/max/600/0*kTFyEmIqxQkg5oEo.png
So this is my write-up on one of the HackTheBox machines called Late. Let’s go!
Continue reading on Medium »
HackTheBox — Late Writeup
https://cdn-images-1.medium.com/max/600/0*kTFyEmIqxQkg5oEo.png
So this is my write-up on one of the HackTheBox machines called Late. Let’s go!
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How to bypass Captcha
https://cdn-images-1.medium.com/max/600/1*0650-ehSxzKdJSzbV-Uu1A.jpeg
Hii all i have come back!! with an other write up with the help of this you can bypass the captcha.
Continue reading on Medium »
How to bypass Captcha
https://cdn-images-1.medium.com/max/600/1*0650-ehSxzKdJSzbV-Uu1A.jpeg
Hii all i have come back!! with an other write up with the help of this you can bypass the captcha.
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
HackThisSite Extended Basic 7
https://cdn-images-1.medium.com/max/700/0*BuBw6aufMPkrg7eA.jpg
Next mission is fixing a PHP script which includes a bug plus vulnerability.
Continue reading on Medium »
HackThisSite Extended Basic 7
https://cdn-images-1.medium.com/max/700/0*BuBw6aufMPkrg7eA.jpg
Next mission is fixing a PHP script which includes a bug plus vulnerability.
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Dockerising a Flask Webapp
https://cdn-images-1.medium.com/max/1326/0*GvcA9mElsLT8XZO0.png
So, I recently dabbled with docker a bit , and its really fun.
Continue reading on Medium »
Dockerising a Flask Webapp
https://cdn-images-1.medium.com/max/1326/0*GvcA9mElsLT8XZO0.png
So, I recently dabbled with docker a bit , and its really fun.
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
I made a website can detect over 1000 extensions and shows you the percentage of users that share the same extensions.
https://external-preview.redd.it/qu56Q-AryL3M6NIzFJit5-Tg0wXoxyhsW2pk0skwoIQ.jpg?width=640&crop=smart&auto=webp&s=02b63d2eb7e97818bbc67d75ac145e414ba8cc59 submitted by /u/z0ccc_z0ccc
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
___________________________
@hacking_Attack
@Hacking_Video
I made a website can detect over 1000 extensions and shows you the percentage of users that share the same extensions.
https://external-preview.redd.it/qu56Q-AryL3M6NIzFJit5-Tg0wXoxyhsW2pk0skwoIQ.jpg?width=640&crop=smart&auto=webp&s=02b63d2eb7e97818bbc67d75ac145e414ba8cc59 submitted by /u/z0ccc_z0ccc
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
___________________________
@hacking_Attack
@Hacking_Video
Reddit
r/hacking on Reddit: I made a website can detect over 1000 extensions and shows you the percentage of users that share the same…
Posted by u/z0ccc_z0ccc - 457 votes and 38 comments
hacking: security in practice
Hacking a old Iphone SE
I have a phone from my elder sibling it says connect to iTunes i can hack it.. i tried different ways... my linux wont detect it and all the other windows software tell me to purchase it... i clearly get it if this post gets removed....(I have full allowance from the owner of the phone)
submitted by /u/Nobbie_Gamer
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
___________________________
@hacking_Attack
@Hacking_Video
Hacking a old Iphone SE
I have a phone from my elder sibling it says connect to iTunes i can hack it.. i tried different ways... my linux wont detect it and all the other windows software tell me to purchase it... i clearly get it if this post gets removed....(I have full allowance from the owner of the phone)
submitted by /u/Nobbie_Gamer
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
___________________________
@hacking_Attack
@Hacking_Video
reddit
Hacking a old Iphone SE
I have a phone from my elder sibling it says connect to iTunes i can hack it.. i tried different ways... my linux wont detect it and all the other...
hacking: security in practice
mitmproxy2swagger - Automatically reverse-engineer REST APIs via capturing the traffic
submitted by /u/CyberMasterV
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
___________________________
@hacking_Attack
@Hacking_Video
mitmproxy2swagger - Automatically reverse-engineer REST APIs via capturing the traffic
submitted by /u/CyberMasterV
[link] [comments]
➖ Sent by @TheFeedReaderBot ➖
___________________________
@hacking_Attack
@Hacking_Video
reddit
mitmproxy2swagger - Automatically reverse-engineer REST APIs via...
Posted in r/hacking by u/CyberMasterV • 1 point and 0 comments
Hunt-Sleeping-Beacons - Aims To Identify Sleeping Beacons
http://www.kitploit.com/2022/06/hunt-sleeping-beacons-aims-to-identify.html
___________________________
@hacking_Attack
@Hacking_Video
http://www.kitploit.com/2022/06/hunt-sleeping-beacons-aims-to-identify.html
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Hunt-Sleeping-Beacons - Aims To Identify Sleeping Beacons
The idea of this project is to identify beacons which are unpacked at runtime or running in the context of another process. To do so, I make use of the observation that beacons tend to call Sleep between their callbacks. A call to sleep sets the state of the thread to DelayExecution which is taken (https://www.kitploit.com/search/label/Taken) as a first indiciator that a thread might be executing a beacon. After enumerating all threads whose state is DelayExecution, multiple metrics are applied to identify potential beacons
Metrics If the beacon (https://www.kitploit.com/search/label/Beacon) does not make use of file backed memory, the callstack to NtDelayExecution includes memory (https://www.kitploit.com/search/label/Memory) regions which can not be associated with a file on disk. If the beacon uses module stomping, one of the modules in the callstack to NtDelayExecution is modified Projects, such as Threadstackspoofer (https://github.com/mgeeky/ThreadStackSpoofer), hook Sleep to spoof the callstack or to use another technique to wait between callbacks (https://github.com/waldo-irc/YouMayPasser/blob/master/Lockd/Lockd/Sleep.cpp). Thus, I added two more metrics: Inline Hooks of Sleep can be fingerprinted by enumerating memory areas marked as private (not shared) storing the .text segment of Kernel32. This also applies if the hook is removed temporarily Since a beacon spends more time waiting for commands than actually executing code, it can be fingerprinted by comparing the fields KernelTime and UserTime of SYSTEM_THREAD_INFORMATION. Initially I thought that the time sleeping would count as time spent in Kernelmode, but it turned out the other way. I am not sure why :'P Additionally, both fields increase only after the operator executed some commands with the beacon. Also here, I am not sure why :'P To decrease false positives, I decided to considerate only processes with loaded wininet.dll or winhttp.dll. Additionally, I had to ignore jitted processes (.NET) and modifications to ntdll.dll which also seems to happen legitimately. Metric three and four are still applied though. Examples Sample non file backed beacon: [!] Suspicious Process: PhantomDllHollower.exe
[*] Thread (9192) has State: DelayExecution and abnormal calltrace:
NtDelayExecution -> C:\WINDOWS\SYSTEM32\ntdll.dll
SleepEx -> C:\WINDOWS\System32\KERNELBASE.dll
0x00007FF8C13A103F -> Unknown or modified module
0x000001E3C3F48FD0 -> Unknown or modified module
0x00007FF700000000 -> Unknown or modified module
0x00007FF7C00000BB -> Unknown or modified module
[*] Suspicious Sleep() found
[*] Sleep Time: 600s
Sample beacon using module stomping: [!] Suspicious Process: beacon.exe (5296)
[*] Thread (2968) has State: DelayExecution and uses potentially stomped module
[*] Potentially stomped module: C:\Windows\SYSTEM32\xpsservices.dll
NtDelayExecution -> C:\Windows\SYSTEM32\ntdll.dll
SleepEx -> C:\Windows\System32\KERNELBASE.dll
DllGetClassObject -> C:\Windows\SYSTEM32\xpsservices.dll
[*] Suspicious Sleep() found
[*] Sleep Time: 5s
Sample beacon inline hooking (https://www.kitploit.com/search/label/Hooking) sleep [!] Suspicious Process: ThreadStackSpoofer.exe (4876). Potentially hooked Sleep / Modifies Kernel32.dll
Identification of generic beaconing behaviour by comparing KernelTime and UserTime: [!] Suspicious Process: ThreadStackSpoofer.exe (4876). Thread 1132 has state DelayExecution and spends 94% of the time in usermode
Misc There are of course many ways to bypass this project. :-) Credits forrestorr (https://twitter.com/_forrestorr) for documenting the detection of modified dlls based on shared/private memory areas link (https://www.forrest-orr.net/post/malicious-memory-artifacts-part-i-dll-hollowing) waldoirc
___________________________
@hacking_Attack
@Hacking_Video
Metrics If the beacon (https://www.kitploit.com/search/label/Beacon) does not make use of file backed memory, the callstack to NtDelayExecution includes memory (https://www.kitploit.com/search/label/Memory) regions which can not be associated with a file on disk. If the beacon uses module stomping, one of the modules in the callstack to NtDelayExecution is modified Projects, such as Threadstackspoofer (https://github.com/mgeeky/ThreadStackSpoofer), hook Sleep to spoof the callstack or to use another technique to wait between callbacks (https://github.com/waldo-irc/YouMayPasser/blob/master/Lockd/Lockd/Sleep.cpp). Thus, I added two more metrics: Inline Hooks of Sleep can be fingerprinted by enumerating memory areas marked as private (not shared) storing the .text segment of Kernel32. This also applies if the hook is removed temporarily Since a beacon spends more time waiting for commands than actually executing code, it can be fingerprinted by comparing the fields KernelTime and UserTime of SYSTEM_THREAD_INFORMATION. Initially I thought that the time sleeping would count as time spent in Kernelmode, but it turned out the other way. I am not sure why :'P Additionally, both fields increase only after the operator executed some commands with the beacon. Also here, I am not sure why :'P To decrease false positives, I decided to considerate only processes with loaded wininet.dll or winhttp.dll. Additionally, I had to ignore jitted processes (.NET) and modifications to ntdll.dll which also seems to happen legitimately. Metric three and four are still applied though. Examples Sample non file backed beacon: [!] Suspicious Process: PhantomDllHollower.exe
[*] Thread (9192) has State: DelayExecution and abnormal calltrace:
NtDelayExecution -> C:\WINDOWS\SYSTEM32\ntdll.dll
SleepEx -> C:\WINDOWS\System32\KERNELBASE.dll
0x00007FF8C13A103F -> Unknown or modified module
0x000001E3C3F48FD0 -> Unknown or modified module
0x00007FF700000000 -> Unknown or modified module
0x00007FF7C00000BB -> Unknown or modified module
[*] Suspicious Sleep() found
[*] Sleep Time: 600s
Sample beacon using module stomping: [!] Suspicious Process: beacon.exe (5296)
[*] Thread (2968) has State: DelayExecution and uses potentially stomped module
[*] Potentially stomped module: C:\Windows\SYSTEM32\xpsservices.dll
NtDelayExecution -> C:\Windows\SYSTEM32\ntdll.dll
SleepEx -> C:\Windows\System32\KERNELBASE.dll
DllGetClassObject -> C:\Windows\SYSTEM32\xpsservices.dll
[*] Suspicious Sleep() found
[*] Sleep Time: 5s
Sample beacon inline hooking (https://www.kitploit.com/search/label/Hooking) sleep [!] Suspicious Process: ThreadStackSpoofer.exe (4876). Potentially hooked Sleep / Modifies Kernel32.dll
Identification of generic beaconing behaviour by comparing KernelTime and UserTime: [!] Suspicious Process: ThreadStackSpoofer.exe (4876). Thread 1132 has state DelayExecution and spends 94% of the time in usermode
Misc There are of course many ways to bypass this project. :-) Credits forrestorr (https://twitter.com/_forrestorr) for documenting the detection of modified dlls based on shared/private memory areas link (https://www.forrest-orr.net/post/malicious-memory-artifacts-part-i-dll-hollowing) waldoirc
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Leading source of security tools, hacking tools, cybersecurity and network security. Learn about new tools and updates in one place.
(https://twitter.com/waldoirc) for general support :-)
Download Hunt-Sleeping-Beacons (https://github.com/thefLink/Hunt-Sleeping-Beacons)
___________________________
@hacking_Attack
@Hacking_Video
Download Hunt-Sleeping-Beacons (https://github.com/thefLink/Hunt-Sleeping-Beacons)
___________________________
@hacking_Attack
@Hacking_Video
Twitter
waldoirc (@waldoirc) / Twitter
Trying to figure out how computers work. Figuring out SDR, IOT, and Mobile exploitation.
https://t.co/rLZFU0dOBy
https://t.co/rLZFU0dOBy
LoveTok — HackTheBox — Web Exploitation — Challenge — Writeup
https://0x1rootjkqsta.medium.com/lovetok-hackthebox-web-exploitation-challenge-writeup-75729ae81fbe?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://0x1rootjkqsta.medium.com/lovetok-hackthebox-web-exploitation-challenge-writeup-75729ae81fbe?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
LoveTok — HackTheBox — Web Exploitation — Challenge — Writeup
Hello guys I am back to posting another writeup. This is a web challenge. The challenge was created on 13th February 2021. It is a…