- Add Users To Sudoers in CentOS7
- Install VBox Guest Additions in CentOS
- Full Screen - Right Ctrl + F
- Open Terminal with Ctrl+Alt+T Here
This file contains 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
# Log file | |
*.log | |
# BlueJ files | |
*.ctxt | |
# Mobile Tools for Java (J2ME) | |
.mtj.tmp/ |
This file contains 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
import random | |
import sys | |
from optparse import OptionParser | |
import Util | |
from Connection import Connection | |
class SSHBruteForce(): | |
def __init__(self): |
- GET DETAILS OF APPLICATION WITH PID RUNNING ON A SPECIFIC PORT
Replace 5500 with the port that you want to get info on.
- Get-Process -Id (Get-NetTCPConnection -LocalPort 5500).OwningProcess Reference
- KILL TASK WITH SPECIFIC PID - WINDOWS 10
- taskkill /F /PID 7644
- SHORTEN THE SYSTEM PATH VARIABLE IF YOU REACH 2047 LIMIT
1. Enable Clipboard Copy in VMWare Workstation
When you create a new VM, in my case I store my new VMs in Documents\Virtual Machines
directory, so for e.g. if I create the VM named wot_lab
then for that you have a file with extension wot_lab.vmx created as well. You can open <vm_name>.vmx file with notepad and to enable clipboard copy paste between host and guest you need to paste these two params:
isolation.tools.copy.disable = "FALSE"
isolation.tools.paste.disable = "FALSE"
This file contains 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
for file in ./* ; do | |
dir=$(basename $file .txt) | |
mkdir $dir | |
cd $dir | |
wget -i "../${file}" | |
tree -h -D -o "${dir}_tree.txt" . | |
zip -r "${dir}.zip" . | |
rm *.pdf | |
cd .. | |
dir="" |
This file contains 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
# Use as: wget -O - -q https://git.io/Jf15N | bash | |
# Make sure USB debugging is on and adb is installed | |
# else run sudo apt-get update && sudo apt-get install android-tools-adb android-tools-fastboot | |
adb forward tcp:9222 localabstract:chrome_devtools_remote | |
wget -O tabs.json http://localhost:9222/json/list |
This file contains 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
{"lastUpload":"2020-07-09T20:12:02.633Z","extensionVersion":"v3.4.3"} |
- Problem Description: "VMware Workstation and Device/Credential Guard are not compatible" error in VMware Workstation on Windows 10 host (2146361)
Solution
Just run cmd as Admin and type
bcdedit /set hypervisorlaunchtype off
and REBOOT
NewerOlder