CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/exploits/CVE-2016-4655/set.h
Views: 11779
1
/*
2
* set.h - High-level handler to set boot nonce
3
*
4
* Copyright (c) 2017 Siguza & tihmstar
5
*/
6
7
#ifndef SET_H
8
#define SET_H
9
10
#include <stdbool.h>
11
12
bool set_generator(const char *gen);
13
14
bool dump_apticket(const char *to);
15
16
#endif
17
18