Skip to content

Instantly share code, notes, and snippets.

View achernar's full-sized avatar

Alex Achernar da Rosa Wendt achernar

View GitHub Profile
@DimitarChristoff
DimitarChristoff / store-trap.html
Created October 22, 2016 22:50
chrome store abuse
<!-- view-source:http://cofinsa.info/helloworld.php?city=GB&clickid=wOG4PFS3EJJ786J0H5TOVOG4 -->
<!--<script>if(history.replaceState) history.replaceState({}, "", "/");</script>-->
<script>confirm('Add Extension to Leave');</script>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
@desyncr
desyncr / magnet2torrent
Created January 1, 2014 23:34
Script to create a .torrent file from a magnet link. Adapted from https://wiki.archlinux.org/index.php/Rtorrent
#!/bin/bash
[[ "$1" =~ xt=urn:btih:([^&/]+) ]] || exit;
echo "d10:magnet-uri${#1}:${1}e" > "meta-${BASH_REMATCH[1]}.torrent"