Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/exploits/CVE-2016-4655/set.h
21463 views
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