Home
0xskar
Cancel

WTForms Install email_validator for email validation support

Problem Trying to use this code to validate a form but getting exception: Exception: Install 'email_validator' for email validation support. class LoginForm(FlaskForm): email = StringFie...

Blog Data Migtation

Okay so I have a problem. I’ve done about ~200 posts on this site but I also have this template that I am using called chirpy. We’ll I eventually want to design my own in the future, but I need all...

Bugged VM

nmap sudo nmap -p- 10.10.108.171 -vvvv -T4 sudo nmap -sC -sV -O -p1883 10.10.108.171 PORT STATE SERVICE VERSION 1883/tcp open mosquitto version 2.0.14 PORT STATE SERVI...

Oh My Webserver

Enumeration nmap Initial Scans sudo nmap 10.10.200.169 -vvv -p- -T5 sudo nmap -p22,80 10.10.200.169 -vvv -sC -sV -O Response 22/tcp open ssh syn-ack ttl 61 OpenSSH 8.2p1 Ubuntu 4ubuntu0....

Stocker

Enumeration nmap nmap shows us two open ports 22,80 wfuzz wfuzz -c -t 50 -u http://stocker.htb -w /usr/share/seclists/Discovery/DNS/bitquark-subdomains-top100000.txt -H "Host: FUZZ.stocker.htb"...

NahamStore

Learning the basics of bug bounty and web application hacking. NahamSec set this room was setup to test what people learned on this Udemy Course “Intro to Bug Bounty Hunting and Web Application Ha...

LAMP Stack Setup

LAMP is a bundle of 4 different software technologies that developers use to build websites and application. LAMP is an acronym for the operating system, Linux; the web server, Apache; the database...

Find Specific Lines in Bash

grep phone numbers Given a text file file.txt that contains a list of phone numbers (one per line), write a one-liner bash script to print all valid phone numbers. You may assume that a valid pho...

CSS Color Schemes

Color schemes are a good way to plan in advance for a project design. I was going to work on designing something new and wanted to keep this information for reference. Colorffy https://colorffy.c...

SQL Injection Portswigger Academy Notes

Retriving Hidden Data If the application doesnt provide any protections against SQLi attacks an attacker can construct an attack by commenting out the SQL query with '--. https://insecure-website...