Skip to content

Instantly share code, notes, and snippets.

View camiloibarrayepes's full-sized avatar
🏠
Working from home

Camilo Andres Ibarra Yepes camiloibarrayepes

🏠
Working from home
  • Colombia
View GitHub Profile
@MrCl0wnLab
MrCl0wnLab / requestCamAxisPOC.lua
Last active June 22, 2024 11:18
POC Request Axis Cam ( CVE: CVE-2003-0240 )
--[[
-- BY MrCl0wnLab & r00t-3xp10it
-- https://gist.github.com/MrCl0wnLab
axis-network-camera-http-authentication-bypass
https://www.coresecurity.com/content/axis-network-camera-http-authentication-bypass
CVE: CVE-2003-0240
Vulnerability Description:
@BMuscle
BMuscle / janken.cpp
Last active August 29, 2019 05:57
じゃんけんソース③
//main関数内
if(player1 == player2){
judge = 3;//あいこの場合
}else{
player1 = player % 3;//相手との差を求める
if(player1 + 1 == player2){
judge = 1;//P1が勝ち
}else{
judge = 2;//あいこは条件から外れているのでP2の勝ち
}
@PurpleBooth
PurpleBooth / README-Template.md
Last active March 22, 2026 14:54
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@jonahlyn
jonahlyn / DBConnection.php
Created September 1, 2011 16:59
PDO Connection Class
<?php
/*
* Class DBConnection
* Create a database connection using PDO
* @author jonahlyn@unm.edu
*
* Instructions for use:
*
* require_once('settings.config.php'); // Define db configuration arrays here
* require_once('DBConnection.php'); // Include this file