Skip to content

Instantly share code, notes, and snippets.

View jpabeem's full-sized avatar

Jeroen jpabeem

View GitHub Profile
@Murillo2380
Murillo2380 / XSS - CSRF Handbook.md
Last active April 6, 2021 10:34
Handbook for XSS and CSRF in common libraries

Introduction

This material was presented on CorunhaJS by Murillo Henrique Pedroso Ferreira. Most of the content present here was based on the links in the end of this document.

Attacks

XSS

Type of attack where it is possible to inject malicious code in de DOM by abusing the HTML/JS parsers. Typically done when the user input is not properly handled by the server or the client.

@JoaquimLey
JoaquimLey / github_multiple-accounts.md
Last active December 26, 2024 06:16
How to Work with GitHub and Multiple Accounts

Step 1 - Create a New SSH Key

We need to generate a unique SSH key for our second GitHub account.

ssh-keygen -t rsa -C "your-email-address"

Be careful that you don't over-write your existing key for your personal account. Instead, when prompted, save the file as id_rsa_COMPANY. In my case, I've saved the file to ~/.ssh/id_rsa_work.

Step 2 - Attach the New Key