Ones you have generated, downloaded and extracted the certificate zip, you will find 2 files in it:
gd_bundle-g2-g1.crtIntermediate CertificateRANDOM_NUM.crtYour SSL Certificate
| #! /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 |
| #! /usr/bin/python3 | |
| import socket | |
| from threading import Thread | |
| from argparse import ArgumentParser | |
| class PortScanner: | |
| def __init__(self, target_ip, show): | |
| self.show_ranges = show | |
| self.target_ip = target_ip |
| #!/usr/bin/python3 | |
| # -*- coding: utf-8 -*- | |
| ######################################################## | |
| from PyQt5.QtCore import (QDir, Qt) | |
| from PyQt5.QtWidgets import (QApplication, QGridLayout, | |
| QTableWidget, QTableWidgetItem, QWidget, QPushButton, QFileDialog, | |
| QMainWindow, QMessageBox, QAbstractItemView, QComboBox, QLabel) | |
| from PyQt5.QtGui import QIcon | |
| import os, subprocess | |
| import pydub |
| ; Assumes dockerfile with: | |
| ; ENTRYPOINT ["/usr/bin/supervisord", "-c", "/var/app/supervisord.conf"] | |
| [supervisord] | |
| ;logfile=/var/app/logs/ ; (main log file;default $CWD/supervisord.log) | |
| logfile_maxbytes=50MB ; (max main logfile bytes b4 rotation;default 50MB) | |
| logfile_backups=5 ; (num of main logfile rotation backups;default 10) | |
| loglevel=debug ; (log level;default info; others: debug,warn,trace) | |
| pidfile=/tmp/supervisord.pid ; (supervisord pidfile;default supervisord.pid) | |
| nodaemon=true ; (start in foreground if true;default false) |
| /* | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| */ | |
| #include <arpa/inet.h> | |
| #include <linux/if_packet.h> | |
| #include <stdio.h> |
| #!/usr/bin/python | |
| import urllib2 | |
| import json | |
| apikey = '' | |
| user = '' | |
| baseurl = '' | |
| query_enable = { 'is_enabled' : True } |