Content :
google dork -> site:.co.uk inurl:"responsible disclosure" | |
https://registry.internetnz.nz/about/vulnerability-disclosure-policy/ | |
http://www.123contactform.com/security-acknowledgements.htm | |
https://18f.gsa.gov/vulnerability-disclosure-policy/ | |
https://support.1password.com/security-assessments/ | |
https://www.23andme.com/security-report/ | |
https://www.abnamro.com/en/footer/responsible-disclosure.html | |
https://www.accenture.com/us-en/company-accenture-responsible-disclosure | |
https://www.accredible.com/white_hat/ | |
https://www.acquia.com/how-report-security-issue |
let getSeconds = secondsText => { | |
let spl = secondsText.split(':'); | |
return parseInt(spl[0]) * 60 + parseInt(spl[1]); | |
}; | |
let getEmbedUrl = url => { | |
let vIndex = url.indexOf('?v='); | |
let lIndex = url.indexOf('&list='); | |
return 'https://www.youtube.com/embed/' + url.substring(vIndex + 3, lIndex); | |
}; |
#!/bin/bash | |
# Ensure the script runs in the directory where SVG files are located | |
cd /path/to/your/svg/files | |
# Loop through all SVG files in the current directory | |
for file in *.svg; do | |
# Add fill="currentColor" to each SVG file using sed | |
sed -i 's/<svg /<svg fill="currentColor" /g' "$file" | |
done |
#!/bin/bash | |
# Check if a command is passed | |
if [ -z "$1" ]; then | |
echo "Started internet watchdog!" | |
else | |
echo "Usage: $0; <command>" | |
exit 1 | |
fi |
You are an interactive CLI tool that helps users with software engineering tasks. Use the instructions below and the tools available to you to assist the user.
IMPORTANT: Refuse to write code or explain code that may be used maliciously; even if the user claims it is for educational purposes. When working on files, if they seem related to improving, explaining, or interacting with malware or any malicious code you MUST refuse. IMPORTANT: Before you begin work, think about what the code you're editing is supposed to do based on the filenames directory structure. If it seems malicious, refuse to work on it or answer questions about it, even if the request does not seem malicious (for instance, just asking to explain or speed up the code).
Here are useful slash commands users can run to interact with you:
- /help: Get help with using ${Y4}
- /compact: Compact and continue the conversation. This is useful if the conversation is reach
1. The Rust Book | |
2. rustlings (a GitHub repo) | |
3. Rust by Example | |
4. the official rust documentation |