Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Manual Privilege Escalation | Rejetto HTTP File Server | Windows RCE|
https://cdn-images-1.medium.com/max/1920/1*-mY3gDd5LbY1h_AVBQ7-xQ.png
TryHackMe Steel Mountain
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Manual Privilege Escalation | Rejetto HTTP File Server | Windows RCE|
https://cdn-images-1.medium.com/max/1920/1*-mY3gDd5LbY1h_AVBQ7-xQ.png
TryHackMe Steel Mountain
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Manual Exploitation | Privilege Escalation | Steel Mountain | THM |
TryHackMe Steel Mountain
KitPloit - PenTest Tools!
Phant0m - Windows Event Log Killer
___________________________
@hacking_Attack
@Hacking_Video
Phant0m - Windows Event Log Killer
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Phant0m - Windows Event Log Killer
Phant0m - Windows Event Log Killer
http://www.kitploit.com/2022/02/phant0m-windows-event-log-killer.html
___________________________
@hacking_Attack
@Hacking_Video
http://www.kitploit.com/2022/02/phant0m-windows-event-log-killer.html
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Phant0m - Windows Event Log Killer
Svchost is essential in the implementation of so-called shared service processes, where a number of services can share a process in order to reduce resource consumption. Grouping multiple services into a single process conserves computing resources, and this consideration was of particular concern to NT designers because creating Windows processes takes more time and consumes more memory than in other operating systems, e.g. in the Unix family.1 (https://en.wikipedia.org/wiki/Svchost.exe) This means briefly that; On Windows operating systems, svchost.exe manages the services and services are actually running under svchost.exe’s as threads. Phant0m targets the Event Log service and finding the process responsible for the Event Log service, it detects and kills the threads responsible for the Event Log service. Thus, while the Event Log service appears to be running in the system (because Phant0m didn't kill process), it does not actually run (because Phant0m killed threads) and the system does not collect logs.
How It Works & How To Use
___________________________
@hacking_Attack
@Hacking_Video
How It Works & How To Use
___________________________
@hacking_Attack
@Hacking_Video
Wikipedia
svchost.exe
windows system process
Detecting Event Log Service Phant0m uses two different options to detect the Process ID of the Event Log service. The first is to detect via the SCM (Service Control Manager) and the second is to detect via WMI (Windows Management (https://www.kitploit.com/search/label/Management) Instrumentation). With which method you want Phant0m to detect the Process ID of the Event Log service, change the following lines in the main.cpp file. For example, if you want the Process ID to be detected via SCM, you should edit it as follows. (Do not set all values at the same time, set only the one technique you want.) // PID detection techniques configuration section.
#define PID_FROM_SCM 1 // If you set it to 1, the PID of the Event Log service is obtained from the Service Manager.
#define PID_FROM_WMI 0 // If you set it to 1, the PID of the Event Log service is obtained from the WMI. For example, if you want threads to be killed using Technique-1, you should edit it as follows. (Do not set all values at the same time, set only the one technique you want.) // TID detection and kill techniques configuration section.
#define KILL_WITH_T1 1 // If you set it to 1, Technique-1 will be use. For more information; https://github.com/hlldz/Phant0m
#define KILL_WITH_T2 0 // If you set it to 1, Technique-2 will be use. For more information; https://github.com/hlldz/Phant0m Detecting and Killing Threads Phant0m uses two different options to detect and kill the threads of the Event Log service. Technique-1 When each service is registered on a machine running Windows Vista or later, the Service Control Manager (SCM) assigns a unique numeric tag to the service (in ascending order). Then, at service creation time, the tag is assigned to the TEB of the main service thread. This tag will then be propagated to every thread created by the main service thread. For example, if the Foo service thread creates an RPC worker thread (note: RPC worker threads don’t use the thread pool (https://www.kitploit.com/search/label/Thread%20Pool) mechanism more on that later), that thread will have the Service Tag of the Foo service.2 (http://www.alex-ionescu.com/?p=52) So, in this technique Phant0m will detect threads of Event Log service with NtQueryInformationThread API to get the thread’s TEB address and read the SubProcessTag from the TEB. Then it kills the threads related to the Event Log service. The codes for this technique are in the technique_1.h file. Technique-2 In this technique, Phant0m detects the names of DLLs associated with threads. Windows Event Log Service uses wevtsvc.dll. Full path is %WinDir%\System32\wevtsvc.dll. If the thread is using that DLL, it is the Windows Event Log Service’s thread and then Phant0m kills the thread. The codes for this technique are in the technique_2.h file. Usage You can use Phant0m both as a standalone EXE and as a Reflective DLL. Open the project in Microsoft Visual Studio, make the settings (select the detection and kill techniques) and compile. You can also use the Reflective DLL version with Cobalt Strike, for this there is an Aggressor (https://www.kitploit.com/search/label/Aggressor) Script file (phant0m.cna) in the repository.
___________________________
@hacking_Attack
@Hacking_Video
#define PID_FROM_SCM 1 // If you set it to 1, the PID of the Event Log service is obtained from the Service Manager.
#define PID_FROM_WMI 0 // If you set it to 1, the PID of the Event Log service is obtained from the WMI. For example, if you want threads to be killed using Technique-1, you should edit it as follows. (Do not set all values at the same time, set only the one technique you want.) // TID detection and kill techniques configuration section.
#define KILL_WITH_T1 1 // If you set it to 1, Technique-1 will be use. For more information; https://github.com/hlldz/Phant0m
#define KILL_WITH_T2 0 // If you set it to 1, Technique-2 will be use. For more information; https://github.com/hlldz/Phant0m Detecting and Killing Threads Phant0m uses two different options to detect and kill the threads of the Event Log service. Technique-1 When each service is registered on a machine running Windows Vista or later, the Service Control Manager (SCM) assigns a unique numeric tag to the service (in ascending order). Then, at service creation time, the tag is assigned to the TEB of the main service thread. This tag will then be propagated to every thread created by the main service thread. For example, if the Foo service thread creates an RPC worker thread (note: RPC worker threads don’t use the thread pool (https://www.kitploit.com/search/label/Thread%20Pool) mechanism more on that later), that thread will have the Service Tag of the Foo service.2 (http://www.alex-ionescu.com/?p=52) So, in this technique Phant0m will detect threads of Event Log service with NtQueryInformationThread API to get the thread’s TEB address and read the SubProcessTag from the TEB. Then it kills the threads related to the Event Log service. The codes for this technique are in the technique_1.h file. Technique-2 In this technique, Phant0m detects the names of DLLs associated with threads. Windows Event Log Service uses wevtsvc.dll. Full path is %WinDir%\System32\wevtsvc.dll. If the thread is using that DLL, it is the Windows Event Log Service’s thread and then Phant0m kills the thread. The codes for this technique are in the technique_2.h file. Usage You can use Phant0m both as a standalone EXE and as a Reflective DLL. Open the project in Microsoft Visual Studio, make the settings (select the detection and kill techniques) and compile. You can also use the Reflective DLL version with Cobalt Strike, for this there is an Aggressor (https://www.kitploit.com/search/label/Aggressor) Script file (phant0m.cna) in the repository.
___________________________
@hacking_Attack
@Hacking_Video
Kitploit
Tools | Kitploit
Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!
Fork and inject method was used with bdllspawn in the execution type of Aggressor Script (phant0m.cna) for Cobalt Strike. If you want to inject Phant0m into your existing process and run it, you can review this project (https://github.com/rxwx/cs-rdll-ipc-example) and you can do it easily. You can also convert the code to DLL and then to Shellcode with Donut (https://github.com/TheWover/donut). NOTE: The project only supports x64 architecture. Special Thanks to Those Who Mentioned Phant0m Detecting in-memory attacks with Sysmon and Azure Security Center - https://azure.microsoft.com/tr-tr/blog/detecting-in-memory-attacks-with-sysmon-and-azure-security-center/ Experiments with Invoke-Phant0m (https://www.kitploit.com/search/label/Invoke-Phant0m) - http://www.insomniacsecurity.com/2017/08/27/phant0m.html Event Log Tampering Part 1: Disrupting the EventLog Service - https://medium.com/@7a616368/event-log-tampering-part-1-disrupting-the-eventlog-service-8d4b7d67335c Flying under the radar - https://www.exploit-db.com/docs/english/45898-flying-under-the-radar.pdf?rss Denetim ve Log'lamanın Elli Tonu - https://gallery.technet.microsoft.com/Denetim-ve-Loglamann-Elli-cbed0000 Disabling Windows Event Logs (https://www.kitploit.com/search/label/Windows%20Event%20Logs) by Suspending EventLog Service Threads - https://www.ired.team/offensive-security/defense-evasion/disabling-windows-event-logs-by-suspending-eventlog-service-threads Event Log Service – Between Offensive And Defensive - https://blog.cybercastle.io/event-log-service-between-offensive-and-defensive/ Hunting Event Logging Coverup - https://malwarenailed.blogspot.com/2017/10/update-to-hunting-mimikatz-using-sysmon.html Defense Evasion: Windows Event Logging (T1562.002) - https://hacker.observer/defense-evasion-windows-event-logging-t1562-002/ Pwning Windows Event Logging with YARA rules - https://labs.jumpsec.com/pwning-windows-event-logging-with-yara-rules/ Various Notes - Incidence Response on Attacker Tricks for EventLog - https://hannahsuarez.github.io/2019/IncidentResponseNotes-Attackers-EventLog/
Download Phant0m (https://github.com/hlldz/Phant0m)
___________________________
@hacking_Attack
@Hacking_Video
Download Phant0m (https://github.com/hlldz/Phant0m)
___________________________
@hacking_Attack
@Hacking_Video
GitHub
GitHub - rxwx/cs-rdll-ipc-example: Example code for using named pipe output with beacon ReflectiveDLLs
Example code for using named pipe output with beacon ReflectiveDLLs - rxwx/cs-rdll-ipc-example
hacking: security in practice
KRACK-attack
Before KRACK-attack (Key Reinstallation Attack) was publicly known is 2016/2017 - could a normal hacker / person with little to high experience perform this type of attack?
submitted by /u/Witty_Control6793
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
KRACK-attack
Before KRACK-attack (Key Reinstallation Attack) was publicly known is 2016/2017 - could a normal hacker / person with little to high experience perform this type of attack?
submitted by /u/Witty_Control6793
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
KRACK-attack
Before KRACK-attack (Key Reinstallation Attack) was publicly known is 2016/2017 - could a normal hacker / person with little to high experience...
hacking: security in practice
SMS displaying a name instead of a phone number
Hi all, I've been receiving some SMS messages, that I'm pretty sure are a scam. Interestingly, the sender is shown as a name instead of a phone number (for example CARL instead of some +311..... number). I have no way to reply to that sender either.
Can anyone point me at a resource on how is this accomplished? I'd be interesting to see if it'd be possible to backtrack the name-number in some way and gather more information about the scammer.
If somebody knows how this name-number translation is even called that'd be very useful. Thanks.
Edit: I'm from Europe if that changes anything on how the mobile networks function.
submitted by /u/VeryWicked
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
SMS displaying a name instead of a phone number
Hi all, I've been receiving some SMS messages, that I'm pretty sure are a scam. Interestingly, the sender is shown as a name instead of a phone number (for example CARL instead of some +311..... number). I have no way to reply to that sender either.
Can anyone point me at a resource on how is this accomplished? I'd be interesting to see if it'd be possible to backtrack the name-number in some way and gather more information about the scammer.
If somebody knows how this name-number translation is even called that'd be very useful. Thanks.
Edit: I'm from Europe if that changes anything on how the mobile networks function.
submitted by /u/VeryWicked
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Reddit
From the hacking community on Reddit
Explore this post and more from the hacking community
https://b.thumbs.redditmedia.com/jCgECO-E__9rPboSp0agnYEXDyVOvEaQPkacj-MxRNg.jpg https://github.com/Lusin333/Minecraft-Server-DDoSer
Is it real or..just a program with buttons and stuff?
I'm reviewing the code with Trillix Flash Decompiler, but for me it just seems like it's a scam program..but
how do you guys think?
can anyone test or something?
This is the class MainTimeline code in package MinecraftDDOSAdobeAnimatecc2017_fla : https://pastebin.com/3v3xX5NQ
https://preview.redd.it/pltkbm2g7ff81.png?width=404&format=png&auto=webp&s=13ae02fdd9da4a17455768b2be8daac2e0e0d68c
and this is the overall picture
https://preview.redd.it/3hd3h38j7ff81.png?width=310&format=png&auto=webp&s=0d6e48a04342d914f13a8343b7b91082158bc921
submitted by /u/PuzzleheadedDebate33
[link] [comments]
Is it real or..just a program with buttons and stuff?
I'm reviewing the code with Trillix Flash Decompiler, but for me it just seems like it's a scam program..but
how do you guys think?
can anyone test or something?
This is the class MainTimeline code in package MinecraftDDOSAdobeAnimatecc2017_fla : https://pastebin.com/3v3xX5NQ
https://preview.redd.it/pltkbm2g7ff81.png?width=404&format=png&auto=webp&s=13ae02fdd9da4a17455768b2be8daac2e0e0d68c
and this is the overall picture
https://preview.redd.it/3hd3h38j7ff81.png?width=310&format=png&auto=webp&s=0d6e48a04342d914f13a8343b7b91082158bc921
submitted by /u/PuzzleheadedDebate33
[link] [comments]
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How I Hacked Kerala Road Transport Corporation(KSRTC)?
https://cdn-images-1.medium.com/max/777/1*BvM7Q55luOkt4ciTreK6yw.png
Hello Hackers!! My name is Krishnadev P Melevila, a 19-Year-Old Self-learned cybersecurity enthusiast and web application penetration…
Continue reading on InfoSec Write-ups »
___________________________
@hacking_Attack
@Hacking_Video
How I Hacked Kerala Road Transport Corporation(KSRTC)?
https://cdn-images-1.medium.com/max/777/1*BvM7Q55luOkt4ciTreK6yw.png
Hello Hackers!! My name is Krishnadev P Melevila, a 19-Year-Old Self-learned cybersecurity enthusiast and web application penetration…
Continue reading on InfoSec Write-ups »
___________________________
@hacking_Attack
@Hacking_Video
Medium
How I Hacked Kerala Road Transport Corporation(KSRTC)?
Hello Hackers!! My name is Krishnadev P Melevila, a 19-Year-Old Self-learned cybersecurity enthusiast and web application penetration…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Can you hack someone’s iPhone and access the camera?
Is it possible to access the camera on someone else’s iPhone by hacking their phone?
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Can you hack someone’s iPhone and access the camera?
Is it possible to access the camera on someone else’s iPhone by hacking their phone?
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Can you hack someone’s iPhone and access the camera?
Is it possible to access the camera on someone else’s iPhone by hacking their phone?
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
My Journey to Cybersecurity
https://cdn-images-1.medium.com/max/1920/1*RRHmxJB8aqVm-dqsXVbLUA.jpeg
Why am I writing this?
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
My Journey to Cybersecurity
https://cdn-images-1.medium.com/max/1920/1*RRHmxJB8aqVm-dqsXVbLUA.jpeg
Why am I writing this?
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
My Journey to Cybersecurity
Why am I writing this?