Skip to content

Instantly share code, notes, and snippets.

View zer0tonin's full-sized avatar
🏳️‍⚧️

Alice Girard Guittard zer0tonin

🏳️‍⚧️
View GitHub Profile
import React from 'react';
import Grid from 'react-mdc-web/lib/Grid/Grid';
import Cell from 'react-mdc-web/lib/Grid/Cell';
import Textfield from 'react-mdc-web/lib/Textfield/Textfield';
export default function ComingSoon() {
return (
<div>
<h1 style={{ textAlign: 'center' }}>{'Coming soon'}</h1>
<Grid>
@zer0tonin
zer0tonin / index.html
Created November 22, 2016 01:58
Simple XSS removal in Node JS
<html>
<head>
<title>XSS Protector!</title>
<meta charset="utf-8">
</head>
<body>
<form method="post" action="result">
<label for="input">Input : </label>
<input type="text" name="input"></input>
</form>
@zer0tonin
zer0tonin / MainClass.java
Created November 18, 2016 19:58
Minimal AV engine
import java.io.*;
import java.nio.file.Files;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
public class MainClass {