Security Risks For Building Projects In Visual Studio
It is very easy to clone a GitHub repository to Visual Studio, build it and use it. Who even cares about the source code right? Well, you should. After reading this blog you may want to reconsider building the program without checking it first.
How does Visual Studio build a program?To get a better understanding about the dangers of building a program in Visual Studio, we need to first understand how Visual Studio (VS) actually builds your program.
Visual Studio uses a process called the MSBuil ...
Exploring the new BloodHound Community Edition
In the realm of cybersecurity, Active Directory is a critical component for managing and organizing a network, controlling access to resources, and ensuring security. BloodHound takes a unique approach by utilizing graph theory to map out relationships between different elements in Active Directory, such as users, groups, and computers. This graphical representation helps security professionals identify and understand potential security risks, such as privilege escalation and lateral movement pa ...
Appsanity - HackTheBox
Nmap1234567891011121314151617181920# Nmap 7.94 scan initiated Sun Oct 29 09:01:48 2023 as: nmap -sCV -T4 --min-rate 10000 -p- -v -oA nmap/tcp_default 10.129.147.80Nmap scan report for 10.129.147.80Host is up (0.024s latency).Not shown: 65532 filtered tcp ports (no-response)PORT STATE SERVICE VERSION80/tcp open http Microsoft IIS httpd 10.0| http-methods: |_ Supported Methods: GET HEAD POST OPTIONS|_http-server-header: Microsoft-IIS/10.0|_http-title: Did not follow redirect to https:// ...
Blackfield - HackTheBox
Nmap scanWe begin by doing a nmap scan on the target IP (10.10.10.192).
1**nmap -sCV -T4 --min-rate 10000 -v -oA nmap/tcp_default 10.10.10.192**
1234567891011121314151617181920212223242526# Nmap 7.93 scan initiated Wed Nov 30 10:28:13 2022 as: nmap -sCV -T4 --min-rate 10000 -v -oA nmap/tcp_default 10.10.10.192Nmap scan report for 10.10.10.192Host is up (0.025s latency).Not shown: 993 filtered tcp ports (no-response)PORT STATE SERVICE VERSION53/tcp open domain Simple DNS Plus ...
Bookworm - HackTheBox
Nmap scanWe begin by scanning the box using nmap:
123456789101112131415161718192021# Nmap 7.94 scan initiated Tue Oct 17 07:05:54 2023 as: nmap -sCV -T4 --min-rate 10000 -p- -v -oA nmap/tcp_default 10.10.11.215Nmap scan report for 10.10.11.215Host is up (0.028s latency).Not shown: 65533 closed tcp ports (reset)PORT STATE SERVICE VERSION22/tcp open ssh OpenSSH 8.2p1 Ubuntu 4ubuntu0.7 (Ubuntu Linux; protocol 2.0)| ssh-hostkey: | 3072 81:1d:22:35:dd:21:15:64:4a:1f:dc:5c:9c:66:e5:e2 (RSA)| ...
Skyfall - HackTheBox
1. Nmap scan1234567891011121314151617181920# Nmap 7.94SVN scan initiated Mon Feb 5 03:50:17 2024 as: nmap -sCV -T4 --min-rate 10000 -p- -v -oA nmap/tcp_default 10.129.216.173Nmap scan report for 10.129.216.173Host is up (0.027s latency).Not shown: 65533 closed tcp ports (reset)PORT STATE SERVICE VERSION22/tcp open ssh OpenSSH 8.9p1 Ubuntu 3ubuntu0.6 (Ubuntu Linux; protocol 2.0)| ssh-hostkey: | 256 65:70:f7:12:47:07:3a:88:8e:27:e9:cb:44:5d:10:fb (ECDSA)|_ 256 74:48:33:07:b7:88:9d:32:0e ...
Vessel - HackTheBox
Nmap:12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273┌──(kali㉿DESKTOP-FQ305P5)-[~/Documents/HackTheBox/Vessel]└─$ nmap -sC -sV -oN nmapresults.txt -vv -T4 10.10.11.178Starting Nmap 7.92 ( https://nmap.org ) at 2022-09-25 12:30 CESTNSE: Loaded 155 scripts for scanning.NSE: Script Pre-scanning.NSE: Starting runlevel 1 (of 3) scan.Initiating NSE at 12:30Completed NSE at 12:30, 0.00s elapsedNSE: Starting runleve ...
Broscience - HackTheBox
Nmap scan1234567891011121314151617181920212223242526272829303132333435363738394041# Nmap 7.93 scan initiated Tue Apr 4 08:55:16 2023 as: nmap -sCV -T4 --min-rate 10000 -v -oA nmap/tcp_default 10.10.11.195Nmap scan report for 10.10.11.195Host is up (0.026s latency).Not shown: 997 closed tcp ports (reset)PORT STATE SERVICE VERSION22/tcp open ssh OpenSSH 8.4p1 Debian 5+deb11u1 (protocol 2.0)| ssh-hostkey: | 3072 df17c6bab18222d91db5ebff5d3d2cb7 (RSA)| 256 3f8a56f8958faeafe3ae7eb880f ...
Ambassador - HackTheBox
Nmap results123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126# Nmap 7.92 scan initiated Sun Oct 2 12:23:43 2022 as: nmap -sC -sV -oN nmap.txt -T4 -vv 10.129.215.140Nmap scan report for 10.129.215.140Host is up, received conn-refused (0.026s latency).Scanned at 2022-10-02 12:23: ...
Coder - HackTheBox
NmapWe first of all begin by scanning the machine with Nmap:
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495# Nmap 7.94 scan initiated Thu Sep 28 06:13:46 2023 as: nmap -sCV -T4 --min-rate 10000 -p- -v -oA nmap/tcp_default 10.10.11.207Warning: 10.10.11.207 giving up on port because retransmission cap hit (6).Nmap scan report for 10.10.11.207Host is up (0.024s late ...