Skip to content

Instantly share code, notes, and snippets.

@janus57
janus57 / index.html
Last active August 29, 2015 14:25 — forked from d3noob/index.html
Add multiple markers in leaflet.js
<!DOCTYPE html>
<html>
<head>
<title>Simple Leaflet Map</title>
<meta charset="utf-8" />
<link
rel="stylesheet"
href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css"
/>
</head>
@janus57
janus57 / all-find-potential-malware-occurences.sh
Last active August 29, 2015 14:18 — forked from anotheremily/find-base64-occurences
hackers seem to like base64 (or eval) encoding their php commands
#!/bin/bash
# This will find ANY "base64" or "eval(" or "eval)" which are potentially a malware and write all output in detections.txt
# WARNING : This bash script need to be executed in the "infected" folder, like /var/www/
find . -type f -exec grep -Hn "base64\|eval(\|eval)" '{}' \; &> detections.txt