Skip to content

Instantly share code, notes, and snippets.

View astinaam's full-sized avatar
😎

Abdullah Al Mahmud astinaam

😎
  • Fiftytwo Digital Ltd
  • Dhaka, Bangladesh
View GitHub Profile
@SahilC
SahilC / clock.asm
Created December 19, 2012 10:31
A simple assembly code for the 8086 microprocessor to display a digital clock in real time.
.model small
.stack 1024
.data
.code
start:
mov ax,@data
mov ds,ax
extrn writesint:proc
mov ah,2ch
int 21h
@GaretJax
GaretJax / decrypt.py
Last active September 15, 2021 08:05
Genetic algorithm to decrypt substitution ciphers
from __future__ import print_function
import collections
import re
import random
##############################################################################
# Program parameters
# Path to the text file containing the ciphertext
@Scottmitch
Scottmitch / openssl.ld
Last active April 23, 2020 09:21
openssl.ld for 1.0.2h
OPENSSL_1.0.0 {
global:
BIO_f_ssl;
BIO_new_buffer_ssl_connect;
BIO_new_ssl;
BIO_new_ssl_connect;
BIO_proxy_ssl_copy_session_id;
BIO_ssl_copy_session_id;
BIO_ssl_shutdown;
d2i_SSL_SESSION;
@bviews
bviews / openssl.ld
Created August 13, 2017 09:58
openssl.ld for OPENSSL_1.0.2l
OPENSSL_1.0.0 {
global:
BIO_f_ssl;
BIO_new_buffer_ssl_connect;
BIO_new_ssl;
BIO_new_ssl_connect;
BIO_proxy_ssl_copy_session_id;
BIO_ssl_copy_session_id;
BIO_ssl_shutdown;
d2i_SSL_SESSION;