Skip to content

Instantly share code, notes, and snippets.

View Silva97's full-sized avatar

Luiz Felipe Silva Silva97

View GitHub Profile
@Silva97
Silva97 / rfc1071.asm
Created June 23, 2020 01:28
Implementação do algoritmo de checksum RFC 1071 em Assembly x86-64
; Implementação do algoritmo de checksum RFC 1071 em Assembly x86-64.
; Exercício proposto pelo Frederico Pissarra.
bits 64
default rel
section .text
; unsigned short cksum( void *ptr, size_t size );
; Entrada: RDI = ptr
#include <stdio.h>
#include <unistd.h>
enum {
READ = 0,
WRITE,
};
int main(void)
{
@Silva97
Silva97 / index.html
Last active June 12, 2020 18:56
Observer in JS
<!DOCTYPE html>
<html>
<head>
<title>Observer</title>
<script src="./main.js"></script>
<style>
.list {
display: flex;
flex-direction: column;
// Exemplo de impressão de caracteres Unicode em C.
#include <stdio.h>
#include <locale.h>
#include <wchar.h>
int main(void)
{
wchar_t str[] = L"Oi ✌ cara! €€€";
setlocale(LC_CTYPE, "pt_BR.utf8");
#include <stdio.h>
#include <stdlib.h>
int cmpfloat(const void *n1, const void *n2)
{
return *( (const float *) n1 ) > *( (const float *) n2 );
}
#define SIZE 3
#include <stdio.h>
#include <stdlib.h>
void triangle(int, int);
int main(int argc, char **argv)
{
triangle(atoi(argv[1]), 0); // 17
return 0;
}
#include <stdio.h>
#include <stdlib.h>
#define ASIZE 4
int main(void)
{
// char *a[ASIZE];
char **a = malloc(sizeof (char *) * ASIZE);
for (int i = 0; i < ASIZE; i++)
#include <stdio.h>
#include <stdlib.h>
struct example {
void (*add)(struct example *, int);
void (*show)(struct example *);
int number;
};
void example_add(struct example *this, int n)
/* Just a simple crackme.
* For compile this crackme, download the CCS tool from:
* https://github.com/Silva97/cli-tools
*
* And run:
* $ gcc `./ccs crackme00.c` -o crackme00
*/
#include <stdio.h>
#include <string.h>
@Silva97
Silva97 / 128bit-division.c
Last active September 30, 2019 21:34
Exemplo de divisão de um número de 128 bits
#include <stdio.h>
#include <inttypes.h>
int asmdiv(uint64_t highq, uint64_t lowq, uint64_t divisor)
{
uint64_t quotient;
uint64_t modulous;
__asm__ __volatile__ (
"movq %[highq], %%rdx\n\t"