-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
211 lines (193 loc) · 6.94 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#pragma once
#include <stdio.h>
#include <cstddef>
#include <iostream>
#include <string>
#include <vector>
#include <bitset>
#include <climits>
#include <iostream>
#include "stdlib.h"
#include "OtherFunctions.hpp"
#include "NetFunctions.hpp"
#include "NetFormating.hpp"
#include "GlobalVars.hpp"
#include "LaunchOptionsHandling.hpp"
#include "OtherFunctions.hpp"
#pragma comment(lib, "wpcap" )
#pragma comment(lib, "iphlpapi.lib")
#pragma comment(lib, "Ws2_32.lib")
#pragma comment(lib, "IPHLPAPI.lib")
#pragma comment(lib, "Packet.lib")
#pragma comment(lib, "Common++.lib")
#pragma comment(lib, "Packet++.lib")
#pragma comment(lib, "Pcap++.lib")
int main(int argc, char* argv[])
{
getDevices(); //Interfaces will be added to DEVS vector.
if (EXIT_FAILURE == LaunchOptionsProcessing(argc, argv) ) //Handling of launch arguments
{
std::cerr << "Error occured when handling launch arguments" << std::endl;
return EXIT_FAILURE;
}
if (DGWAY.empty())
{
DGWAY = OutputInterface.gwayip;
}
if ("" == OutputInterface.ipaddr )
{
if (!SMAC.empty())
{
OutputInterface = FindAppropriateDeviceByMac(DEVS, SMAC);
if ("" == OutputInterface.ipaddr)
{
std::cerr << "Wasn't able to determine output interface." << std::endl;
return EXIT_FAILURE;
}
}
else
{
std::cerr << "Source MAC wasn't specified, and no interface with matching subnet was found. Aborting..." << std::endl;
return EXIT_FAILURE;
}
}
std::cout << "Output IPv4 is " << OutputInterface.ipaddr << ";" << std::endl;
if (DMAC.empty()) //If we don't pass destination MAC, we need to get it with ARP
{
SMAC = MacVecToStringWithDelimiters(OutputInterface.macaddrvec, ':');
std::vector <uint_fast8_t> targetmac;
std::cout << std::endl << "Destination MAC address not found, making an ARP request..." << std::endl;
sendarp(OutputInterface, DADDR, targetmac);
DMAC = MVTSWD(targetmac, ':');
}
if (DGWAY.empty())
{
DGWAY = OutputInterface.gwayip;
if (GWMAC.empty())
{
std::vector <uint_fast8_t> gwaymacvec;
std::cout << std::endl << "Gateway MAC address not found, making an ARP request..." << std::endl;
sendarp(OutputInterface, DGWAY, gwaymacvec);
if (!gwaymacvec.empty())
{
GWMAC = VecToString(gwaymacvec);
}
}
}
else
{
if (GWMAC.empty())
{
std::vector <uint_fast8_t> gwaymacvec;
std::cout << std::endl << "Gateway MAC address not found, making an ARP request..." << std::endl;
sendarp(OutputInterface, DGWAY, gwaymacvec);
if (!gwaymacvec.empty())
{
GWMAC = VecToString(gwaymacvec);
}
}
}
if (!GWMAC.empty())
{
uint_fast8_t switchretval = 2;
if (2 > progmode)
{
if (true == both)
{
switchretval = sendspoof(DMAC, GWMAC, DADDR, OutputInterface, false, internalport, externalport, DGWAY, gwlistenerport, mappinglifetime);
if (0 == switchretval)
{
std::cout << "Nat-PMP request sent for UDP" << std::endl;
}
istcp = true;
switchretval = sendspoof(DMAC, GWMAC, DADDR, OutputInterface, istcp, internalport, externalport, DGWAY, gwlistenerport, mappinglifetime);
if (0 == switchretval)
{
std::cout << "Nat-PMP request sent for TCP" << std::endl;
}
return 0;
}
else
{
switchretval = sendspoof(DMAC, GWMAC, DADDR, OutputInterface, istcp, internalport, externalport, DGWAY, gwlistenerport, mappinglifetime);
if (0 == switchretval)
{
std::cout << "Nat-PMP request sent" << std::endl;
}
}
}
switch (progmode)
{
case 1: //-H mode
{
if (SetConsoleCtrlHandler(CtrlHandler, TRUE))
{
std::cout << std::endl << "Program has entered updating state. Mappings will be checked every " << (int)sleeptime << " seconds."
<< std::endl << "Press CTRL + C, CTRL + Break, or close the window to exit with deletion of all created mappings." << std::endl << std::endl;
uint8_t loopbreak;
while (true)
{
loopbreak = WatchList();
if (0 != loopbreak)
{
std::cout << "No mappings left to renew!" << std::endl;
break;
}
std::this_thread::sleep_for(std::chrono::seconds(sleeptime));
}
}
break;
}
case 2: //-R mode
{
if (true == both)
{
switchretval = DestroySingleMapping(DMAC, GWMAC, DADDR, OutputInterface, false, internalport, DGWAY, gwlistenerport);
if (0 == switchretval)
{
std::cout << "Sent Nat-PMP request for destroying UDP mapping" << std::endl;
}
istcp = true;
switchretval = DestroySingleMapping(DMAC, GWMAC, DADDR, OutputInterface, istcp, internalport, DGWAY, gwlistenerport);
if (0 == switchretval)
{
std::cout << "Sent Nat-PMP request for destroying TCP mapping" << std::endl;
}
break;
}
else
{
switchretval = DestroySingleMapping(DMAC, GWMAC, DADDR, OutputInterface, istcp, internalport, DGWAY, gwlistenerport);
if (0 == switchretval)
{
std::cout << "Sent Nat-PMP request for destroying mapping" << std::endl;
}
break;
}
}
case 3: //-RALL mode
{
switchretval = DestroyAllMappings(DMAC, GWMAC, DADDR, OutputInterface, istcp, DGWAY, gwlistenerport);
if (0 == switchretval)
{
std::cout << "Sent Nat-PMP request for destroying all associated mappings" << std::endl;
}
break;
}
case 4:
//View mode
//for checking existing mappings
break;
default:
{
//-A mode
break;
}
}
}
if (1 != progmode)
{
system("PAUSE");
}
return 0;
}