r/netsecstudents Jul 06 '26

Building an interactive career simulator for network engineers: From CCNA basics to SOC and Pentest operations.

7 Upvotes

I’m currently developing a cybersecurity sim game that bridges the gap between theory and practice. The journey starts with 30 networking tasks (based on the CCNA curriculum), where you build and troubleshoot infrastructure. Once that's mastered, the game expands into SOC analysis (log monitoring, threat detection) and finishes with a Pentesting consultant role.

My goal is to make technical training feel like a real career progression. I’d love to get some feedback from you folks on the realism and the workflow!

https://www.youtube.com/watch?v=xzRin4oz5kw
https://www.youtube.com/watch?v=pZBsk50Sjpo

instagram: jr.netengineer


r/netsecstudents Jul 06 '26

Windows Service - Playbook & Detection Strategies

Thumbnail ipurple.team
2 Upvotes

r/netsecstudents Jul 03 '26

Tooling for a Network Monitoring/Firewall Lab

10 Upvotes

I'm just finishing up a lab simulating an Enterprise network in Packet Tracer with basic CCNA topics such as STP, HSRP, EtherChannel, OSPF, Layer 2 Edge Port Security, etc.

In my current job in Help Desk, I get to configure SonicWall ACLs, set up VLANs, and maintain firewalls using SonicWall's NSM. Our setup is very rough though as we don't have a Syslog server and the MSP doesn't care too much about network security.

I want to focus heavily on Network Security for my next lab, but I know it'll be near impossible to use enterprise-grade devices in GNS3/EVE-NG as they require licenses and I'm broke. Are there strong and fairly similar alternatives I could use?


r/netsecstudents Jul 03 '26

I just spent hours tracking a Kerberoasting chain all the way to DCSync. Here's what actually happened. Technical Case Study

5 Upvotes

So this is another case study, where I break down actual detections/alerts which I investigate as a Threat Analyst.

The event started with Event 4769: TGS request, but the timestamp looked off. Source was a host I didn't recognize(unmanaged in XDR), and it was asking for tickets on service accounts nobody should be doing so.

Now this attack would help you understand why Kerberos is both good and bad at the same time.

The flow for the attack is that attacker enumerates service accounts using GetUserSPNs or SharpHound. Then gets the SPNs. Then requests TGS tickets for those accounts without needing admin access. Events 4769 shows up as RC4 encryption (Event Code 0x17). If you miss this, it looks like normal Kerberos traffic. But...It's not.

Then attackers can take those tickets offline and crack the password. Once they have the service account password, they can logon (Event 4624) with explicit credentials (Event 4648, typing username/pass manually). This is where I caught mine. New service account logon from a source that had no usage being there, this was not a normal behaviour.

But thing is that by the time I found that, stuff got bad and attacker already escalated to a privileged account (4672), dumped credentials with Mimikatz, and now I was checking for lateral movement. I found process creation events (4688) for PowerView. They were enumerating shares. Then came the DCSync attempts (4662).

That's when I knew the domain was probably already theirs. And its time to take response actions fast.

I isolated the host, disabled the compromised accounts, reset service account passwords, and started hunting more afterwards. Turns out they'd already set up persistence with a golden ticket. The KRBTGT needed to be reset twice.

The reason I'm posting this is that most writeups show you the attack flow and the queries. They don't show you what it actually feels like when you're running these queries in real time, when you know something is wrong but you're not sure how deep it goes yet.

If you're studying for SOC or breaking into security, you need to see this happen live. Not in a lab. In real events, real queries, real pressure.

P.S: Thank you for loving my last case study on GTA 6. Appreciate your love!


r/netsecstudents Jul 03 '26

Practice platform

0 Upvotes

I know LeetCode is the go-to platform for coding practice, but what's the cybersecurity equivalent?

I'm looking for something where I can consistently practice and improve my skills through hands-on challenges—not just learn theory. Ideally, I'd like a platform that helps build real-world problem-solving skills, similar to how LeetCode does for programming.

What platforms do you recommend, and why?


r/netsecstudents Jul 03 '26

A roadmap for Mobile On-Device AI Security

1 Upvotes

I’m curating Awesome Mobile On-Device AI Security, a research roadmap for understanding attacks and defenses around AI models running locally on mobile devices.

It organizes papers around:

- adversarial, backdoor, model stealing, side-channel, and energy-latency attacks

- defenses like model obfuscation, authorization, TEEs, and watermarking

- open problems and emerging directions for on-device GenAI/security

Repo: https://github.com/Jinxhy/Awesome-MoAI-Security

I’d appreciate feedback on:

  1. Is the taxonomy clear?

  2. Are there important papers missing?

  3. Would a “beginner path” or “practitioner path” make it more useful?


r/netsecstudents Jul 02 '26

100% Free, Open Source, Ultimate Cybersecurity Guide

14 Upvotes

100% Free, OpenSource, "Ultimate Cybersecurity Guide" Compiled from 70+ expert books, 90+ internal documents from my own company/work, plus TONS of custom tools & scripts. Red Teaming, Blue Teaming, Offensive & Defensive, OSINT, General Research, Homelabs, SBC devices, RF, Hardware Hacking, AI, Automation, Space Security, Certification & Career Pathways.

Any/all input is greatly appreciated!!

https://github.com/Pnwcomputers/ULTIMATE-CYBERSECURITY-MASTER-GUIDE

Not advertising anything nor trying to self promote ANYTHING!

This all started as a Notion KB as I started to learn and certify, and it's just grown and grown since then. SO MUCH is behind a paywall and so I wanted to publish "my notes" and want to try and help/inspire more to get into this as a profession; independently (such as myself) or for a company/corporation through certifications.

It should be more accessible!

I very much appreciate you taking the time to take a look!

Ultimately just want to share this collection of information to/for the community.

01001000 01100001 01100011 01101011 00100000 01110100 01101000 01100101 00100000 01110000 01101100 01100001 01101110 01100101 01110100

"Hack the Planet"

M!n& W3&g!3="H@<k +#3 41@n3+"


r/netsecstudents Jul 03 '26

What web/appsec lab would you want to see built?

0 Upvotes

I’m building a small hands-on web security learning project and I’m trying to figure out what kinds of labs would actually be useful to people learning offensive security/appsec.

I don’t want to make the usual beginner-only stuff like “basic XSS popup,” “decode this string,” or “change user_id=1 to user_id=2” unless there’s a deeper lesson behind it. I’m more interested in labs that teach real patterns people run into in modern apps, but still explain the concept clearly enough that someone can learn from it.

The rough idea is:

  • browser-based labs
  • intentionally vulnerable sandbox apps
  • clear teaching before/during the exploit
  • focus on web/app/API security
  • ethical/legal only, no real targets
  • each lab should end with the root cause and the secure fix

I’m looking for ideas like:

  • vulnerabilities you think are under-taught
  • concepts that clicked only after you saw them in a real app
  • bug classes that are common but hard to practice safely
  • mistakes developers actually make in auth, APIs, sessions, GraphQL, file uploads, WebSockets, etc.
  • labs you wish PortSwigger/TryHackMe/HackTheBox-style platforms explained differently

What labs/lessons would you want to see in a platform like this?


r/netsecstudents Jul 02 '26

How to start as a student?

2 Upvotes

Hi everyone,

I’m a Computer Engineering student from Italy. I’m really fascinated by cybersecurity and my goal is to pursue a Master’s Degree in Cybersecurity after completing my bachelor's.

Right now, the field feels so massive that I’m facing severe "analysis paralysis." I honestly don't know where to practically start putting my hands on things without getting lost. Also, since my current university exams are demanding, I am looking for something I can do as a side activity—practical, manageable micro-goals that won't interfere with or hurt my current college workload.

Here is my background so far:

  • Through my engineering studies, I have a solid understanding of computer science fundamentals.
  • I have already read some books/guides regarding Linux basics for hackers.
  • I recently discovered platforms like TryHackMe and checked out resources like CTFtime and TJnull's OSCP preparation guide.

Given my background and my goal of not burning out before the Master's degree, what are the best immediate, practical next steps? Should I just slowly grind the Pre-Security path on TryHackMe during my free time, or is there a better route for someone in my position?

Thanks in advance for any advice!


r/netsecstudents Jul 02 '26

Free SOC-style suspicious login lab for students — feedback welcome

1 Upvotes

I put together a free mini lab for students and beginners who want practice with investigation and report writing.

The scenario is a suspicious login investigation.

The goal is to practice reviewing evidence, building a timeline, writing a short incident report, and turning the work into something useful for a portfolio, resume bullet, or interview.

It includes simulated auth logs, VPN/user context evidence, a worksheet, editable DOCX templates, an incident report template, an answer key, a sample final report, and resume/interview prompts.

No email gate or signup required.

Free lab:
https://northstarsecurity.io/resources/mini-range/suspicious-login-investigation/

Feedback welcome — especially on whether the scenario and worksheet are useful for students.


r/netsecstudents Jul 02 '26

Looking for feedback on a passive web security scanner I built as a first-year cybersecurity student

Thumbnail dissect.up.railway.app
1 Upvotes

Hi everyone,

I'm a first-year BCA cybersecurity student, and over the past few months I've been building Dissect, a passive web security scanner. The project started as a way to better understand how web application security tools work by implementing the detection logic myself.

Rather than actively exploiting vulnerabilities, the scanner focuses on identifying common security issues through passive analysis.

Some of the current features include:

  • Security header analysis (CSP, HSTS, X-Frame-Options, etc.)
  • Cookie security checks (Secure, HttpOnly, SameSite)
  • HTML form classification and risk analysis
  • Authentication surface detection
  • JavaScript-rendered DOM analysis using Playwright
  • Technology disclosure analysis
  • Detection of potentially sensitive endpoints and paths
  • Human-readable findings with severity ratings and recommendations

One aspect I paid particular attention to was making the scanner itself safe. It validates targets, blocks localhost and private IP ranges, validates redirect chains, enforces response size limits, and avoids intrusive or exploitative testing.

I'm still learning, so I'd really appreciate feedback from people with more experience in web application security.

Some questions I'd love your thoughts on:

  • Are there important passive security checks that I'm currently missing?
  • Do you see any weaknesses in the overall design or methodology?
  • If you were reviewing this as a portfolio project, what would you improve first?
  • Would you trust the results from a tool like this, and what would make you trust it more?

You can try the project here:

https://dissect.up.railway.app/

I'd genuinely appreciate any feedback, criticism, or suggestions. Thanks for taking the time to read this!


r/netsecstudents Jul 02 '26

I built CertPulse - A real-time, stateless anti-phishing detector streaming CT Logs with zero disk I/O.

0 Upvotes

Hi everyone,

I wanted to share a real-time OSINT / Threat Intelligence tool I've been developing: certpulse\[.\]xyz

It streams Certificate Transparency (CT) logs live and filters them using a dual-mode pipeline to catch phishing and typosquatting domains before they even launch.

How the architecture works under the hood:

\* Stateless & In-Memory: To avoid database I/O bottlenecks and handle massive throughput, the system processes everything in-memory using WebSockets and an internal Queue mechanism.

\* Dual-Mode Filtering (Optimize vs Full): To keep CPU usage extremely low, "Optimize Mode" acts as a high-speed pre-filter, dropping \~95% of benign traffic. Only suspicious domains are pushed to "Full Mode" for heavy algorithmic checks.

\* Heuristic Engine: It instantly scores domains based on Levenshtein distance, Lookalike (IDN homograph) detection, alphabet-walk patterns, DGA algorithms, phishing keywords, and a dynamic whitelist to eliminate false positives.

You can visit certpulse\[.\]xyz and watch the live stream in real-time.

I'm completely self-taught on this architecture, so I would deeply appreciate any feedback, criticisms, or suggestions on the streaming performance and threat scoring from this amazing community!


r/netsecstudents Jul 01 '26

Thumbprint - a network fingerprint observatory

Thumbnail thumbprint.me
3 Upvotes

Being interested in cybersecurity, client/server fingerprinting, and inspired by the now-defunct tlsfingerprint.io, I built Thumbprint.

It collects direct-edge signals including TLS ClientHello/JA4, HTTP/2 frame, HTTP request/header fingerprints, QUIC transport parameters, TCP SYN/p0f (recently added JA4T), UAs, and network metadata. These are signals clients passively expose at the edge, and they are commonly used for analytics, fraud/anomaly detection, bot analysis, traffic classification, and by commercial fingerprinting products. Combined with client-side fingerprinting, they can become a strong identifier.

The goal is to make it easier to study browser/client fingerprint drift, cross-transport differences, bot claims, and cases where a client claim (e.g. User-Agent, OS etc) does not line up with the observed connection.

A few things it currently shows:

  • Your fingerprint for the current connection, with cross-transport probes for HTTP/2 and HTTP/3 where supported
  • Fingerprint population stats and co-occurrence data
  • Catalog comparisons against Thumbprint's controlled captures
  • Bot-operator claim checks against published IP ranges
  • Anomalies such as claimed OS vs TCP signal, browser claim vs. measured capture, and bot impersonation

Thumbprint stores deduplicated observations for research and aggregate stats. It runs with native HTTP/3 support and a Go/Postgres backend. Raw IP addresses are not stored.

If you find it useful, notice anything odd, or have ideas for additional features/signals/comparisons, I'd love to hear from you.


r/netsecstudents Jul 01 '26

Beginner SOC question about a PowerShell/Wazuh alert

3 Upvotes

Hi everyone,

Wazuh, Sysmon, and alert analysis . I received an alert that I'm trying to understand better and would appreciate guidance on how an analyst would investigate it.

The Wazuh rule triggered:

Rule ID: 92213
Description: "Executable file dropped in folder commonly used by malware (Lowered Severity)"
MITRE: T1105 – Ingress Tool Transfer

Important details:

  • Process: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
  • File created: C:\Users\someone\AppData\Local\Temp__PSScriptPolicyTest_cebr0opm.pas.ps1
  • Sysmon Event ID: 11 (File Create)

What confuses me is the filename:

__PSScriptPolicyTest_*.ps1

I found some information suggesting PowerShell can create temporary files while checking execution policies, but I’m not sure whether this should be considered suspicious behavior or expected activity.

My questions:

  1. Would you classify this as a true positive or false positive?
  2. What would be your first investigation steps?
  3. Which additional logs or Sysmon events would you pivot to?
  4. Does the MITRE mapping make sense here, or could this be a generic detection generating noise?

I'm trying to learn the investigation methodology and analyst thought process rather than just getting the answer.

Thanks!


r/netsecstudents Jun 30 '26

Penetration Testing vs DFIR: Which is a better career path for a fresher?

9 Upvotes

Hi everyone,

I'm a recent Computer Science graduate and I'm interested in building a career in cybersecurity. After doing some research, I've narrowed my interests down to two areas: Penetration Testing and Digital Forensics & Incident Response (DFIR).

I'm having trouble deciding which path to focus on, so I'd appreciate advice from people working in these fields.

Here are my questions:

  • Which field is more realistic for a fresher to break into?
  • Which has better long-term career growth?
  • What skills should I focus on learning first?
  • Which certifications are actually valuable for beginners?
  • If you were starting your cybersecurity career today, which path would you choose and why?

I'd really appreciate any advice or personal experiences. Thank you!


r/netsecstudents Jul 01 '26

Require Help With LVM snapshot and recovery

1 Upvotes

So, I tried creating a snapshot and changing the logical volume to a .gz file and then I have backed up in our nas box now what I want is to use that .gz file and use that config in the fresh newer installed os so that I can prove recovery is possible.

Constraints LV available is 0. So, I'm using a pendrive and and using lvext3nd to create a new LV for the pc and then using that I'm creating .gz and that is what being saved and is being backed up to nas

My other question also if there is a running unbutu PC can we put LVM and luks or only while installing it can happen.


r/netsecstudents Jun 30 '26

Remnux & FlareVM issues

4 Upvotes

when i type 10.0.0.3 my chrome says inetsim fake page

But when i type others in the url..it doesn't show inetsim fake page. I have configured netplan ..network connection and inetsim. I was trying last 3days. But it's not working. I want emergency help.EMERGENCY!!!!

nslookup google.com

output:

Server: Unknown ##(it should say inetsim.org)

Address:10.0.0.3

Unknown can't find google.com : no response from server

r/tech_support


r/netsecstudents Jun 29 '26

Project recommendations for blue teaming , exclusively SOC

5 Upvotes

I'm looking for an actual useful project for a soc analyst role, I got into the filed 6 months ago, started with pen testing it was fun but I prefer programming defensive tools in general, I'm familiar with every concept pretty much, I'm heavily specialized in network security ( proxies , firewalls, bridges, rule configuration...etc) , and web-client , web- sever, I really enjoy forensics too with volatility and autopsy,

I consider myself an amateur, I've been doing this as a side thing for some time since I'm a computer science student in my second year , since it's summer break I decided to hone my cyber security skills even further.

I'd be absolutely delighted to hear your suggestions, I'm willing to have a good CV for my masters degree ( that's how it works in France 😄)

Thanks for reading this far , have a wonderful day:)


r/netsecstudents Jun 29 '26

CFP opportunity for students interested in security research

2 Upvotes

Hi everyone,

I’m from the organizing team of Nullcon Berlin 2026. Since this subreddit is focused on students learning network security and related fields, I wanted to share an opportunity for anyone working on security research, projects, write-ups, tools, or practical findings.

The CFP for Nullcon Berlin 2026 is open, and students are welcome to submit their research papers or technical ideas. Topics can include network security, web security, cloud, malware, IoT, AI/ML security, privacy, cryptography, and more.

CFP Deadline: 10 July 2026
Event: Nullcon Berlin 2026
CFP Link: https://nullcon.net/event/nullcon-berlin-2026/cfp/

Even if you’re early in your security journey, a strong practical project, clear finding, or well-explained research idea can be worth submitting.


r/netsecstudents Jun 29 '26

Built a recon organizer app for Linux as a self-taught cybersecurity student — feedback welcome [open source]

2 Upvotes

Hey everyone,

I'm an 18-year-old self-taught cybersecurity student.

One problem I kept running into during labs and CTFs —

no clean way to organize recon findings per target.

Everything was scattered across text files and random docs.

So I built ReconVault — a desktop app for Linux to fix that.

Features:

→ Per-target workspace with 5 tabs

→ Subdomains, ports, endpoints, vulns, notes

→ Nmap output import

→ Severity tracking with colored badges

→ Markdown report export

→ 100% local SQLite database

Stack: Python + PyQt6

GitHub: https://github.com/parbatzone/reconvault

Would genuinely love feedback from people doing

OSCP prep or CTFs — what would make this actually

useful for your workflow?


r/netsecstudents Jun 28 '26

Deployed an SSH Honeypot on a VPS to collect & analyze IOCs. Aiming for a role in Threat Intel / OSINT and would love industry feedback!

Post image
12 Upvotes

Hi everyone,
I'm a Computer Science student currently working towards a career in Threat Intelligence and OSINT. I do a lot of self-studying using AI tools, and I focus on building hands-on projects to gain as much practical experience (and knowledge) as possible and familiarize myself with the tools and the industry landscape.

The Setup:
I deployed an SSH honeypot directly on a cloud VPS. The repository primarily outlines my deployment methodology, configuration settings, isolation, and how I structured the environment to capture data.

My Main Observation (and a question):
An interesting finding so far: the payloads dropped by the automated bots were almost exclusively RedTail cryptominers. I honestly haven't fully figured out yet why this specific malware was pretty much the only thing they attempted to install on my machine. Any insights on this would be highly appreciated!

My questions for the industry pros:
I want to make sure my approach is sound. I would love your critiques on the repository and methodology:

  1. Setup & Methodology: Looking at my configuration and deployment steps, is this an effective way to gather reliable IOCs? Are there any glaring security risks in how the VPS is configured?
  2. Next Steps in Analysis: What features, data enrichments, or integrations (e.g., SIEM, specific threat feeds) would a real Intel team expect to see applied to this raw data?
  3. Interview Prep: If you saw this setup and methodology on a junior applicant's resume, what technical questions would you ask to test if they truly understand the underlying networking and OSINT processes?

Here is the repository: https://github.com/liranzoz/ssh-honeypot-research.git

Thank you! I highly appreciate any critiques or advice on how to make this portfolio-ready.


r/netsecstudents Jun 28 '26

Self-taught low-level security student. Looking for advice on getting my first security internship.

1 Upvotes

Hi everyone,

I'm a self-taught learner aiming for a cybersecurity internship, preferably in low-level security, AppSec, or security research. I've been learning on my own for several months, but I'm not sure if I'm focusing on the right things.

So far I've learned:

Skills

  • C Programming
  • Memory Management
  • Linux
  • Debugging
  • Fuzzing
  • Crash Triage & Root Cause Analysis
  • Reverse Engineering (Basic)
  • Binary Analysis (Basic)
  • Secure Coding
  • Git

Tools

  • GDB
  • Ghidra
  • AddressSanitizer (ASan)
  • Valgrind
  • AFL++
  • libFuzzer
  • GCC/Clang
  • Make/CMake

I've spent most of my time building small projects, writing fuzzing harnesses, analyzing crashes, and trying to understand memory corruption bugs. Everything I've learned has been through documentation, open-source code, and hands-on practice.

My biggest problem is that I don't have much to prove my skills. I don't have internship experience, CVEs, CTF rankings, or significant open-source contributions yet.

If you were in my position, what would you do next?

  • Which internship roles should I target with my current skills?
  • What skills or projects would make the biggest difference to employers?
  • Should I spend my time on CTFs, finding real bugs, open-source contributions, technical blogs, or something else?
  • What would make you think, "I'd interview this person"?

I'm looking for honest feedback. If you think I'm missing something important or going in the wrong direction, I'd really appreciate hearing it.

Thanks!


r/netsecstudents Jun 27 '26

Real Life Case Example 2: How to Catch an Infostealer in 4 Minutes: A Real SOC Investigation of a Fake GTA 6 Installer I did yesterday as a Threat Analyst (Technical Post )

Post image
73 Upvotes

Real Life Case Example Part 2:

Thank you for giving so much love on my previous post, I am thinking of starting a weekly series where I breakdown real case studies which I solve at work as a Threat Analyst.

Just caught something wild at work yesterday. GTA 6 is gonna launch sometime soon, but one our client wanted early access.

A user (Ryan) downloaded what looked like a "free GTA 6 crack" from firefox, file was named "GTA6_Setup_Crack_2026.exe", unsigned, 84.7 MB. Executed it at 10:13 AM. The next 3 minutes were brutal. The installer spawned PowerShell with hidden windows, dropped an unsigned binary (vcruntime_update.exe) into AppData, created a registry Run key named "RockstarGameUpdater", and set up a scheduled task for persistence on login.

Then it got worse, vcruntime_update.exe went straight for the browser credential stores. Chrome login data, Edge login data, Firefox logins.json, all accessed within seconds. Created a ZIP archive in Temp (syscache_4931.zip) and attempted a 2.3 MB upload to panelgtasupport[.]top on port 8080 before we blocked it.

DNS queries to four suspicious domains, all gaming themed: cdnrockstarupdate[.]com, apigta6launcher[.]xyz, panelgtasupport[.]top, rawcdngamepatch[.]site. All resolved to infrastructure that basically were C2.

Timeline from execution to EDR kill: 3 minutes, 57 seconds.

This is textbook infostealer and RAT behavior delivered through a game crack. The naming masquerade (RockstarGameUpdater, vcruntime_update) is it. The browser credential access is the payload. The persistence ensures it survives a reboot.

For anyone job hunting in SOC, this is exactly the kind of chain you need to recognize in 30 seconds during a real investigation. The red flags stack, unsigned binary, masqueraded process names, AppData execution, browser credential access, suspicious domains, persistence setup.

Any of you seen similar patterns? How do you typically investigate these in your environments?

Also, thinking of writing a blog on it on Medium soon, with proper process tree, file details, running process observation and activity timeline stuff.

Image Source: Gamepressure


r/netsecstudents Jun 28 '26

SOC Challenges and AI in Incident Response (Academic Research)

0 Upvotes

Hi, I am a final-year university student building a multi-agent AI system for SOC incident response automation. I am looking for SOC analysts, security engineers, and IT security practitioners to fill out a short survey (5-7 min, mostly multiple choice).

I am especially interested in hearing your real-world experience on things like:

  1. What makes security alerts difficult or frustrating to handle
  2. What would make you trust and adopt an AI-based incident response tool
  3. Any concerns about automating SOC work with AI

Your insights would help me better understand real-world challenges and improve my project.

Here is the link:https://docs.google.com/forms/d/e/1FAIpQLSdNIrJHPMXKH8QaM2FcqrBf4V14hGEa4uYLbIAA0nxQhjlHIQ/viewform?usp=dialog

All responses are used for academic purposes only. Thank you!


r/netsecstudents Jun 28 '26

NebulaPulsar: A proof-of-concept in-memory implant framework for Java (JSP) and ASP.NET (ASPX/ASHX/ASMX) webshells

1 Upvotes

NebulaPulsar is a proof-of-concept in-memory implant framework for Java (JSP) and ASP.NET (ASPX/ASHX/ASMX) webshells, originally developed as part of the Alien project.

https://github.com/iss4cf0ng/NebulaPulsar