Skip to content

Instantly share code, notes, and snippets.

cmake_minimum_required(VERSION 2.8)
# this should be the name of your homework assignment
project(Demo)
set(CMAKE_CXX_STANDARD 11)
add_executable(demo main.cpp rectangle.cpp square.cpp)
cmake_minimum_required(VERSION 2.8)
project(Demo)
set(CMAKE_CXX_STANDARD 11)
add_executable(Demo cafeProject.cpp)
//By Kyle Gilligan
#include <stdio.h>
#include <string>
#include <iostream>
#include <vector>
#include <numeric>
#include <cstdlib>
#include <cmath>
#include <algorithm>
@LabMC
LabMC / xml-attacks.md
Created July 6, 2024 22:34 — forked from mgeeky/xml-attacks.md
XML Vulnerabilities and Attacks cheatsheet

XML Vulnerabilities

XML processing modules may be not secure against maliciously constructed data. An attacker could abuse XML features to carry out denial of service attacks, access logical files, generate network connections to other machines, or circumvent firewalls.

The penetration tester running XML tests against application will have to determine which XML parser is in use, and then to what kinds of below listed attacks that parser will be vulnerable.