This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"crypto" | |
"fmt" | |
"os" | |
"os/signal" | |
"syscall" | |
"github.com/ThalesIgnite/crypto11" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
/* | |
#cgo CFLAGS: -I/usr/include/ | |
#cgo LDFLAGS: -ldinamo -ltacndlib | |
#include <dinamo.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <stdio.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# This file register a new or verify an existing Let's Encrypt account | |
# Usage: | |
# re-register.sh <secret key file> <e-mail address> | |
# | |
# It will provide the json reply from Let's Encrypt when trying to register an | |
# account with a key assigned even if the account exists already. | |
# The json contains the details of the new/existing account. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python3 | |
from os import popen, remove, getcwd | |
from selenium import webdriver | |
from subprocess import call | |
from sys import exit | |
from time import sleep | |
from argparse import ArgumentParser | |
from threading import Thread | |
# rootVIII | |
# sec_browse.py - Auto-configures Firefox network settings |
NewerOlder