Skip to content

Instantly share code, notes, and snippets.

View bluecough's full-sized avatar

George S bluecough

View GitHub Profile
@bluecough
bluecough / eq6r-eqmod-asiair.md
Created March 6, 2021 23:40 — forked from timucingelici/eq6r-eqmod-asiair.md
How to connect EQ6-R Pro to AsiAIR (inc. other Raspberry PI solutions) through USB type B cable

How to connect EQ6-R Pro to AsiAIR (inc. other Raspberry PI solutions) through USB type B cable

Tuesday, 29th of Dec 2020

Disclaimer

This document is simply describing my own personal experience and the steps I took to troubleshoot and solve a specific problem.

It also does not provide any guarantees and does not aim to encourage others to violate terms of their vendors/suppliers.

So follow or use it at your own risk. Any harm or unwanted result you may cause is in your responsbility.

#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <errno.h>
#include <netinet/in.h>
#include <netdb.h>
#include <string.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <errno.h>
#include <netinet/in.h>
#include <netdb.h>
#include <string.h>
@bluecough
bluecough / windows_privesc
Created October 14, 2017 02:07 — forked from sckalath/windows_privesc
Windows Privilege Escalation
// What system are we connected to?
systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
// Get the hostname and username (if available)
hostname
echo %username%
// Get users
net users
net user [username]
@bluecough
bluecough / InfoGet.py
Last active July 5, 2018 18:13
Infoblox Code
#!/usr/bin/python
# Author: G.S
# Date: 01-26-2017
# Script to get infoblox names
# Import subprocess module so we can call the curl command from the operating system
import subprocess
import sys, getopt, os
import pycurl
import json