Skip to content

Instantly share code, notes, and snippets.

View elon-fask's full-sized avatar
💻
Processing...

Atman Boulaajaili elon-fask

💻
Processing...
View GitHub Profile
resolvers:
- 1.1.1.1
- 1.0.0.1
- 8.8.8.8
- 8.8.4.4
- 9.9.9.9
- 9.9.9.10
- 77.88.8.8
- 77.88.8.1
- 208.67.222.222
@vishwajeetio
vishwajeetio / airflow_on_docker
Last active January 9, 2023 11:15
setup airflow on docker container in ubuntu 20.04 server
1. inbstall docker on ubuntu 20.04
# https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-20-04
2. install airflow in docker
# https://hub.docker.com/r/puckel/docker-airflow
3. work with airflow
# https://airflow.apache.org/docs/apache-airflow/stable/start.html
4. create a user:
airflow users create -r Admin -u admin -e [email protected] -f admin -l user -p test
@yassineaboukir
yassineaboukir / List of API endpoints & objects
Last active November 17, 2024 16:48
A list of 3203 common API endpoints and objects designed for fuzzing.
0
00
01
02
03
1
1.0
10
100
1000
@samduy
samduy / base64_wordlist.py
Created December 31, 2017 12:16
Python base64 wordlist
#!/usr/bin/python
import base64
file1=open("pwd.lst","r")
file2=open("b64pwds.lst,"w")
for line in file1:
clear = "administrator:" + str.strip(line)
new = base64.encodestring(clear)
file2.write(new)
@julianjupiter
julianjupiter / Database.java
Last active September 21, 2024 19:27
Sample JavaFX application with MySQL JDBC operation.
package io.github.julianjupiter.javafx;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Database
@jasoet
jasoet / gist:3843797
Created October 6, 2012 04:16
Database Connection Singleton
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.secondstack.db;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;