-
Basic scan to see what ports have a valid service running on them:
nmap {host} nmap -v {host}
Pass the -v flag to print a little more information.
| Available profiles | |
| Fast scan | |
| -F -T4 --max-retries 1 | |
| Web scan | |
| -p- -sV --version-all --script "http-* and not(dos or brute)" | |
| Full Service Scan | |
| -sV --version-all -p- -sT | |
| SMB Scan |
| # aproducer.py | |
| # | |
| # Async Producer-consumer problem. | |
| # Challenge: How to implement the same functionality, but no threads. | |
| import time | |
| from collections import deque | |
| import heapq | |
| class Scheduler: |
| // SALSA20.cpp : �������̨Ӧ�ó������ڵ㡣 | |
| // | |
| #include<cryptopp/cryptlib.h> | |
| #include<iostream> | |
| #include<cryptopp/secblock.h> //����SecByteBlock�㷨��ͷ�ļ� | |
| #include<cryptopp/hex.h> //����HexEncoder�㷨��ͷ�ļ� | |
| #include<cryptopp/files.h> //����FileSink�㷨��ͷ�ļ� | |
| #include<cryptopp/osrng.h> //����AutoSeededRandomPool�㷨��ͷ�ļ� | |
| #include<cryptopp/salsa.h> //����Salsa20�㷨��ͷ�ļ� | |
| #include <Windows.h> //CRYPTO����Ʒ |
| <div id="full-stars-example"> | |
| <div class="rating-group"> | |
| <input class="rating__input rating__input--none" name="rating" id="rating-none" value="0" type="radio"> | |
| <label aria-label="No rating" class="rating__label" for="rating-none"><i class="rating__icon rating__icon--none fa fa-ban"></i></label> | |
| <label aria-label="1 star" class="rating__label" for="rating-1"><i class="rating__icon rating__icon--star fa fa-star"></i></label> | |
| <input class="rating__input" name="rating" id="rating-1" value="1" type="radio"> | |
| <label aria-label="2 stars" class="rating__label" for="rating-2"><i class="rating__icon rating__icon--star fa fa-star"></i></label> | |
| <input class="rating__input" name="rating" id="rating-2" value="2" type="radio"> | |
| <label aria-label="3 stars" class="rating__label" for="rating-3"><i class="rating__icon rating__icon--star fa fa-star"></i></label> | |
| <input class="rating__input" name="rating" id="rating-3" value="3" type="radio" checked> |
| sudo apt-get remove docker docker-engine docker.io containerd runc -y | |
| sudo apt-get update -y && sudo apt-get upgrade -y | |
| sudo apt-get update -y | |
| sudo apt-get install \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| gnupg \ | |
| lsb-release | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg |
| <div class="mhn-switch"> | |
| <label for="switch" class="label">My Screen</label> | |
| <input id="switch" type="checkbox" class="toggle"><label for="switch" class="switch"> </label> | |
| <div class="social-media-wrap"> | |
| <div class="social-media"> | |
| <div class="social-dot-wrap"> | |
| <span class="social-dot"></span> | |
| <span class="social-dot"></span> |