Skip to content

Instantly share code, notes, and snippets.

View caviv's full-sized avatar

CAviv caviv

  • Here
View GitHub Profile
@caviv
caviv / webhook.php
Last active October 28, 2017 20:39
A https://www.email2json.net sample receiving call of webhook
<?php
// receieving webhook sample
// example of receiver for email API webhook of https://www.email2json.net
// this will be called when an email is sent to webhook created in email2json.net
$date = date('Y-m-d H:i:s');
$ip = $_SERVER['REMOTE_ADDR'];
$get = json_encode($_GET);
$post = file_get_contents('php://input');
$mail = json_decode($post);
@caviv
caviv / firefoxfix.go
Created March 7, 2020 14:25
Add permissions to Firefox so domains will be able to send notifications in http and no need for https (work around)
package main
// This short script in go (golang) adds websites to the permissions.sqlite file
// of Firefox in order to allow domains with http to send notifications
// it is a work-around on installing SSL/TLS inside intranet inside the organizations
// (C) Cnaan Aviv https://www.cnaanaviv.com
import (
"fmt"
_ "receiver/firefoxfix/homedir"