Skip to content

Instantly share code, notes, and snippets.

View ItsClemi's full-sized avatar

Clemens Susenbeth ItsClemi

View GitHub Profile
@bagder
bagder / slop.md
Last active December 5, 2025 10:09
AI slop security reports submitted to curl

Slop

This collection is limited to only include the reports that were submitted as security vulnerabilities to the curl bug-bounty program on Hackerone.

Several other issues not included here are highly suspcious as well.

Reports

  1. [Critical] Curl CVE-2023-38545 vulnerability code changes are disclosed on the internet. #2199174
@tylerneylon
tylerneylon / Makefile
Created December 3, 2015 23:56
Skeleton Lua C module for teaching.
all: demo.so
clean:
rm *.o *.so
demo.so: demo.o printstack.o
cc -bundle -undefined dynamic_lookup -o demo.so demo.o printstack.o
demo.o: demo.c
cc -fPIC -o $@ -c $< -Ilua_src
//
// Copyright (c) 2014 Sean Farrell
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//