Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

448

449

450

451

452

453

454

455

456

457

458

459

460

461

462

463

464

465

466

467

468

469

470

471

472

473

474

475

476

477

478

479

480

481

482

483

484

485

486

487

488

489

490

491

492

493

494

495

496

497

498

499

500

501

502

503

504

505

506

507

508

509

510

511

512

513

514

515

516

517

518

519

520

521

522

523

524

525

526

527

528

529

530

531

532

533

534

535

536

537

538

539

540

541

542

543

544

545

546

547

548

549

550

551

552

553

554

555

556

557

558

559

560

561

562

563

564

565

566

567

568

569

570

571

572

573

574

575

576

577

578

579

580

581

582

583

584

585

586

587

588

589

590

591

592

593

594

595

596

597

598

599

600

601

602

603

604

605

606

607

608

609

610

611

612

613

614

615

616

617

618

619

620

621

622

623

624

625

626

627

628

629

630

631

632

633

634

635

636

637

638

639

640

641

642

643

644

645

646

647

648

649

650

651

652

653

654

655

656

657

658

659

660

661

662

663

664

665

666

667

668

669

670

671

672

673

674

675

676

677

678

679

680

681

682

683

684

685

686

687

688

689

690

691

692

693

694

695

696

697

698

699

700

701

702

703

704

705

706

707

708

709

710

711

712

713

714

715

716

717

718

719

720

721

722

723

724

725

726

727

728

729

730

731

732

733

734

735

736

737

738

739

740

741

742

743

744

745

746

747

748

749

750

751

752

753

754

755

756

757

758

759

760

761

762

763

764

765

766

767

768

769

770

771

772

773

774

775

776

777

778

779

780

781

782

783

784

785

786

787

788

789

790

791

792

793

794

795

796

797

798

799

800

801

802

803

804

805

806

807

808

809

810

811

812

813

814

815

816

817

818

819

820

821

822

823

824

825

826

827

828

829

830

831

832

833

834

835

836

837

838

839

840

841

842

843

844

845

846

847

848

849

850

851

852

853

854

855

856

857

858

859

860

861

862

863

864

865

866

867

868

869

870

871

872

873

874

875

876

877

878

879

880

881

882

883

884

885

886

887

888

889

890

891

892

893

894

895

896

897

898

899

900

901

902

903

904

905

906

907

908

909

910

911

912

913

914

915

916

917

918

919

920

921

922

923

924

925

926

927

928

929

930

931

932

933

934

935

936

937

938

939

940

941

942

943

944

945

946

947

948

949

950

951

952

953

954

955

956

957

958

959

960

961

962

963

964

965

966

967

968

969

970

971

972

973

974

975

976

977

978

979

980

981

982

983

984

985

986

987

988

989

990

991

992

993

994

995

996

997

998

999

1000

1001

1002

1003

1004

1005

1006

1007

1008

1009

1010

1011

1012

1013

1014

1015

1016

1017

1018

1019

1020

1021

1022

1023

1024

1025

1026

1027

1028

1029

1030

1031

1032

1033

1034

1035

1036

1037

1038

1039

1040

1041

1042

1043

1044

1045

1046

1047

1048

1049

1050

1051

1052

1053

1054

1055

1056

1057

1058

1059

1060

1061

1062

1063

1064

1065

1066

1067

1068

1069

1070

1071

1072

1073

1074

1075

1076

1077

1078

1079

1080

1081

1082

1083

1084

1085

1086

1087

1088

1089

1090

1091

1092

1093

1094

1095

1096

1097

1098

1099

1100

1101

1102

1103

1104

1105

1106

1107

1108

1109

1110

1111

1112

1113

1114

1115

1116

1117

1118

1119

1120

1121

1122

1123

1124

1125

1126

1127

1128

1129

1130

1131

1132

1133

1134

1135

1136

1137

1138

1139

1140

1141

1142

1143

1144

1145

1146

1147

1148

1149

1150

1151

1152

1153

1154

1155

1156

1157

1158

1159

1160

1161

1162

1163

1164

1165

1166

1167

1168

1169

1170

1171

1172

1173

1174

1175

1176

1177

1178

1179

1180

1181

1182

1183

1184

1185

1186

1187

1188

1189

1190

1191

1192

1193

1194

1195

1196

1197

1198

1199

1200

1201

1202

1203

1204

1205

1206

1207

1208

1209

1210

1211

1212

1213

1214

1215

1216

1217

1218

1219

1220

1221

1222

1223

1224

1225

1226

1227

1228

1229

1230

1231

1232

1233

1234

1235

1236

1237

1238

1239

1240

1241

1242

1243

1244

1245

1246

1247

1248

1249

1250

1251

1252

1253

1254

1255

1256

1257

1258

1259

1260

1261

1262

1263

1264

1265

1266

1267

1268

1269

1270

1271

1272

1273

1274

1275

1276

1277

1278

1279

1280

1281

1282

1283

1284

1285

1286

1287

1288

1289

1290

1291

1292

1293

1294

1295

1296

1297

1298

1299

1300

1301

1302

1303

1304

1305

1306

1307

1308

1309

1310

1311

1312

1313

1314

1315

1316

1317

1318

1319

1320

1321

1322

1323

1324

1325

1326

1327

1328

1329

1330

1331

1332

1333

1334

1335

1336

1337

1338

1339

1340

1341

1342

1343

1344

1345

1346

1347

1348

1349

1350

1351

1352

1353

1354

1355

1356

1357

1358

1359

1360

1361

1362

1363

1364

1365

1366

1367

1368

1369

1370

1371

1372

1373

1374

1375

1376

1377

1378

1379

1380

1381

1382

1383

1384

1385

1386

1387

1388

1389

1390

1391

1392

1393

1394

1395

1396

1397

1398

1399

1400

1401

1402

1403

1404

1405

1406

1407

1408

1409

1410

1411

1412

1413

1414

1415

1416

1417

1418

1419

1420

1421

1422

1423

1424

1425

1426

1427

1428

1429

1430

1431

1432

1433

1434

1435

1436

1437

1438

1439

1440

1441

1442

1443

1444

1445

1446

1447

1448

1449

1450

1451

1452

1453

1454

1455

1456

1457

1458

1459

1460

1461

1462

1463

1464

1465

1466

1467

1468

1469

1470

1471

1472

1473

1474

1475

1476

1477

1478

1479

1480

1481

1482

1483

1484

1485

1486

1487

1488

1489

1490

1491

1492

1493

1494

1495

1496

1497

1498

1499

1500

1501

1502

1503

1504

1505

1506

1507

1508

1509

1510

1511

1512

1513

1514

1515

1516

1517

1518

1519

1520

1521

1522

1523

1524

1525

1526

1527

1528

1529

1530

1531

1532

1533

1534

1535

1536

1537

1538

1539

1540

1541

1542

1543

1544

1545

1546

1547

1548

1549

1550

1551

1552

1553

1554

1555

1556

1557

1558

1559

1560

1561

1562

1563

1564

1565

1566

1567

1568

1569

1570

1571

1572

1573

1574

1575

1576

1577

1578

1579

1580

1581

1582

1583

1584

1585

1586

1587

1588

1589

1590

1591

1592

1593

1594

1595

1596

1597

1598

1599

1600

1601

1602

1603

1604

1605

1606

1607

1608

1609

1610

1611

1612

1613

1614

1615

1616

1617

1618

1619

1620

1621

1622

1623

1624

1625

1626

1627

1628

1629

1630

1631

1632

1633

1634

1635

1636

1637

1638

1639

1640

1641

1642

1643

1644

1645

1646

1647

1648

1649

1650

1651

1652

1653

1654

1655

1656

1657

1658

1659

1660

1661

1662

1663

1664

1665

1666

1667

1668

1669

1670

1671

1672

1673

1674

1675

1676

1677

1678

1679

1680

1681

1682

1683

1684

1685

1686

1687

1688

1689

1690

1691

1692

1693

1694

1695

1696

1697

1698

1699

1700

1701

1702

1703

1704

1705

1706

1707

1708

1709

1710

1711

1712

1713

1714

1715

1716

1717

1718

1719

1720

1721

1722

1723

1724

1725

1726

1727

1728

1729

1730

1731

1732

1733

1734

1735

1736

1737

1738

1739

1740

1741

1742

1743

1744

1745

1746

1747

1748

1749

1750

1751

1752

1753

1754

1755

1756

1757

1758

1759

1760

1761

1762

1763

1764

1765

1766

1767

1768

1769

1770

1771

1772

1773

1774

1775

1776

1777

1778

1779

1780

1781

1782

1783

1784

1785

1786

1787

1788

1789

1790

1791

1792

1793

1794

1795

1796

1797

1798

1799

1800

1801

1802

1803

1804

1805

1806

1807

1808

1809

1810

1811

1812

1813

1814

1815

1816

1817

1818

1819

1820

1821

1822

1823

1824

1825

1826

1827

1828

1829

1830

1831

1832

1833

1834

1835

1836

1837

1838

1839

1840

1841

1842

1843

1844

1845

1846

1847

1848

1849

1850

1851

1852

1853

1854

1855

1856

1857

1858

1859

1860

1861

1862

1863

1864

1865

1866

1867

1868

1869

1870

1871

1872

1873

1874

1875

1876

1877

1878

1879

1880

1881

1882

1883

1884

1885

1886

1887

1888

1889

1890

1891

1892

1893

1894

1895

1896

1897

1898

1899

1900

1901

1902

1903

1904

1905

1906

1907

1908

1909

1910

1911

1912

1913

1914

1915

1916

1917

1918

1919

1920

1921

1922

1923

1924

1925

1926

1927

1928

1929

1930

1931

1932

1933

1934

1935

1936

1937

1938

1939

1940

1941

1942

1943

1944

1945

1946

1947

1948

1949

1950

1951

1952

1953

1954

1955

1956

1957

1958

1959

1960

1961

1962

1963

1964

1965

1966

1967

1968

1969

1970

1971

1972

1973

1974

1975

1976

1977

1978

1979

1980

1981

1982

1983

1984

1985

1986

1987

1988

1989

1990

1991

1992

1993

1994

1995

1996

1997

1998

1999

2000

2001

2002

2003

2004

2005

2006

2007

2008

2009

2010

2011

2012

2013

2014

2015

2016

2017

2018

2019

2020

2021

2022

2023

2024

2025

2026

2027

2028

2029

2030

2031

2032

2033

2034

2035

2036

2037

2038

2039

2040

2041

2042

2043

2044

2045

2046

2047

2048

2049

2050

2051

2052

2053

2054

2055

2056

2057

2058

2059

2060

2061

2062

2063

2064

2065

2066

2067

2068

2069

2070

2071

2072

2073

2074

2075

2076

2077

2078

2079

2080

2081

2082

2083

2084

2085

2086

2087

2088

2089

2090

2091

2092

2093

2094

2095

2096

2097

2098

2099

2100

2101

2102

2103

2104

2105

2106

2107

2108

2109

2110

2111

2112

2113

2114

2115

2116

2117

2118

2119

2120

2121

2122

2123

2124

2125

2126

2127

2128

2129

2130

# SECUREAUTH LABS. Copyright 2018 SecureAuth Corporation. All rights reserved. 

# 

# This software is provided under under a slightly modified version 

# of the Apache Software License. See the accompanying LICENSE file 

# for more information. 

# 

# Description: 

# Network packet codecs basic building blocks. 

# Low-level packet codecs for various Internet protocols. 

# 

# Author: 

# Javier Burroni (javier) 

# Bruce Leidl (brl) 

# Javier Kohen (jkohen) 

from __future__ import division 

from __future__ import print_function 

import array 

import struct 

import socket 

import string 

import sys 

from binascii import hexlify 

from functools import reduce 

 

"""Classes to build network packets programmatically. 

 

Each protocol layer is represented by an object, and these objects are 

hierarchically structured to form a packet. This list is traversable 

in both directions: from parent to child and vice versa. 

 

All objects can be turned back into a raw buffer ready to be sent over 

the wire (see method get_packet). 

""" 

 

class ImpactPacketException(Exception): 

def __init__(self, value): 

self.value = value 

def __str__(self): 

return repr(self.value) 

 

class PacketBuffer(object): 

"""Implement the basic operations utilized to operate on a 

packet's raw buffer. All the packet classes derive from this one. 

 

The byte, word, long and ip_address getters and setters accept 

negative indexes, having these the a similar effect as in a 

regular Python sequence slice. 

""" 

 

def __init__(self, length = None): 

"If 'length' is specified the buffer is created with an initial size" 

if length: 

self.__bytes = array.array('B', b'\0' * length) 

else: 

self.__bytes = array.array('B') 

 

def set_bytes_from_string(self, data): 

"Sets the value of the packet buffer from the string 'data'" 

self.__bytes = array.array('B', data) 

 

def get_buffer_as_string(self): 

"Returns the packet buffer as a string object" 

return self.__bytes.tostring() 

 

def get_bytes(self): 

"Returns the packet buffer as an array" 

return self.__bytes 

 

def set_bytes(self, bytes): 

"Set the packet buffer from an array" 

# Make a copy to be safe 

self.__bytes = array.array('B', bytes.tolist()) 

 

def set_byte(self, index, value): 

"Set byte at 'index' to 'value'" 

index = self.__validate_index(index, 1) 

self.__bytes[index] = value 

 

def get_byte(self, index): 

"Return byte at 'index'" 

index = self.__validate_index(index, 1) 

return self.__bytes[index] 

 

def set_word(self, index, value, order = '!'): 

"Set 2-byte word at 'index' to 'value'. See struct module's documentation to understand the meaning of 'order'." 

index = self.__validate_index(index, 2) 

ary = array.array("B", struct.pack(order + 'H', value)) 

88 ↛ 89line 88 didn't jump to line 89, because the condition on line 88 was never true if -2 == index: 

self.__bytes[index:] = ary 

else: 

self.__bytes[index:index+2] = ary 

 

def get_word(self, index, order = '!'): 

"Return 2-byte word at 'index'. See struct module's documentation to understand the meaning of 'order'." 

index = self.__validate_index(index, 2) 

96 ↛ 97line 96 didn't jump to line 97, because the condition on line 96 was never true if -2 == index: 

bytes = self.__bytes[index:] 

else: 

bytes = self.__bytes[index:index+2] 

(value,) = struct.unpack(order + 'H', bytes.tostring()) 

return value 

 

def set_long(self, index, value, order = '!'): 

"Set 4-byte 'value' at 'index'. See struct module's documentation to understand the meaning of 'order'." 

index = self.__validate_index(index, 4) 

ary = array.array("B", struct.pack(order + 'L', value)) 

if -4 == index: 

self.__bytes[index:] = ary 

else: 

self.__bytes[index:index+4] = ary 

 

def get_long(self, index, order = '!'): 

"Return 4-byte value at 'index'. See struct module's documentation to understand the meaning of 'order'." 

index = self.__validate_index(index, 4) 

if -4 == index: 

bytes = self.__bytes[index:] 

else: 

bytes = self.__bytes[index:index+4] 

(value,) = struct.unpack(order + 'L', bytes.tostring()) 

return value 

 

def set_long_long(self, index, value, order = '!'): 

"Set 8-byte 'value' at 'index'. See struct module's documentation to understand the meaning of 'order'." 

index = self.__validate_index(index, 8) 

ary = array.array("B", struct.pack(order + 'Q', value)) 

126 ↛ 127line 126 didn't jump to line 127, because the condition on line 126 was never true if -8 == index: 

self.__bytes[index:] = ary 

else: 

self.__bytes[index:index+8] = ary 

 

def get_long_long(self, index, order = '!'): 

"Return 8-byte value at 'index'. See struct module's documentation to understand the meaning of 'order'." 

index = self.__validate_index(index, 8) 

134 ↛ 135line 134 didn't jump to line 135, because the condition on line 134 was never true if -8 == index: 

bytes = self.__bytes[index:] 

else: 

bytes = self.__bytes[index:index+8] 

(value,) = struct.unpack(order + 'Q', bytes.tostring()) 

return value 

 

 

def get_ip_address(self, index): 

"Return 4-byte value at 'index' as an IP string" 

index = self.__validate_index(index, 4) 

145 ↛ 146line 145 didn't jump to line 146, because the condition on line 145 was never true if -4 == index: 

bytes = self.__bytes[index:] 

else: 

bytes = self.__bytes[index:index+4] 

return socket.inet_ntoa(bytes.tostring()) 

 

def set_ip_address(self, index, ip_string): 

"Set 4-byte value at 'index' from 'ip_string'" 

index = self.__validate_index(index, 4) 

raw = socket.inet_aton(ip_string) 

(b1,b2,b3,b4) = struct.unpack("BBBB", raw) 

self.set_byte(index, b1) 

self.set_byte(index + 1, b2) 

self.set_byte(index + 2, b3) 

self.set_byte(index + 3, b4) 

 

def set_checksum_from_data(self, index, data): 

"Set 16-bit checksum at 'index' by calculating checksum of 'data'" 

self.set_word(index, self.compute_checksum(data)) 

 

def compute_checksum(self, anArray): 

"Return the one's complement of the one's complement sum of all the 16-bit words in 'anArray'" 

nleft = len(anArray) 

sum = 0 

pos = 0 

while nleft > 1: 

sum = anArray[pos] * 256 + (anArray[pos + 1] + sum) 

pos = pos + 2 

nleft = nleft - 2 

if nleft == 1: 

sum = sum + anArray[pos] * 256 

return self.normalize_checksum(sum) 

 

def normalize_checksum(self, aValue): 

sum = aValue 

sum = (sum >> 16) + (sum & 0xFFFF) 

sum += (sum >> 16) 

sum = (~sum & 0xFFFF) 

return sum 

 

def __validate_index(self, index, size): 

"""This method performs two tasks: to allocate enough space to 

fit the elements at positions index through index+size, and to 

adjust negative indexes to their absolute equivalent. 

""" 

 

orig_index = index 

 

curlen = len(self.__bytes) 

if index < 0: 

index = curlen + index 

 

diff = index + size - curlen 

if diff > 0: 

self.__bytes.fromstring('\0' * diff) 

200 ↛ 201line 200 didn't jump to line 201, because the condition on line 200 was never true if orig_index < 0: 

orig_index -= diff 

 

return orig_index 

 

class ProtocolLayer(): 

"Protocol Layer Manager for insertion and removal of protocol layers." 

 

__child = None 

__parent = None 

 

def contains(self, aHeader): 

"Set 'aHeader' as the child of this protocol layer" 

self.__child = aHeader 

aHeader.set_parent(self) 

 

def set_parent(self, my_parent): 

"Set the header 'my_parent' as the parent of this protocol layer" 

self.__parent = my_parent 

 

def child(self): 

"Return the child of this protocol layer" 

return self.__child 

 

def parent(self): 

"Return the parent of this protocol layer" 

return self.__parent 

 

def unlink_child(self): 

"Break the hierarchy parent/child child/parent" 

if self.__child: 

self.__child.set_parent(None) 

self.__child = None 

 

class ProtocolPacket(ProtocolLayer): 

__HEADER_SIZE = 0 

__BODY_SIZE = 0 

__TAIL_SIZE = 0 

 

__header = None 

__body = None 

__tail = None 

 

def __init__(self, header_size, tail_size): 

self.__HEADER_SIZE = header_size 

self.__TAIL_SIZE = tail_size 

self.__header=PacketBuffer(self.__HEADER_SIZE) 

self.__body=PacketBuffer() 

self.__tail=PacketBuffer(self.__TAIL_SIZE) 

 

def __update_body_from_child(self): 

# Update child raw packet in my body 

if self.child(): 

body=self.child().get_packet() 

self.__BODY_SIZE=len(body) 

self.__body.set_bytes_from_string(body) 

 

def __get_header(self): 

return self.__header 

 

header = property(__get_header) 

 

def __get_body(self): 

self.__update_body_from_child() 

return self.__body 

 

body = property(__get_body) 

 

def __get_tail(self): 

return self.__tail 

 

tail = property(__get_tail) 

 

def get_header_size(self): 

"Return frame header size" 

return self.__HEADER_SIZE 

 

def get_tail_size(self): 

"Return frame tail size" 

return self.__TAIL_SIZE 

 

def get_body_size(self): 

"Return frame body size" 

self.__update_body_from_child() 

return self.__BODY_SIZE 

 

def get_size(self): 

"Return frame total size" 

return self.get_header_size()+self.get_body_size()+self.get_tail_size() 

 

def load_header(self, aBuffer): 

self.__HEADER_SIZE=len(aBuffer) 

self.__header.set_bytes_from_string(aBuffer) 

 

def load_body(self, aBuffer): 

"Load the packet body from string. "\ 

"WARNING: Using this function will break the hierarchy of preceding protocol layer" 

self.unlink_child() 

self.__BODY_SIZE=len(aBuffer) 

self.__body.set_bytes_from_string(aBuffer) 

 

def load_tail(self, aBuffer): 

self.__TAIL_SIZE=len(aBuffer) 

self.__tail.set_bytes_from_string(aBuffer) 

 

def __extract_header(self, aBuffer): 

self.load_header(aBuffer[:self.__HEADER_SIZE]) 

 

def __extract_body(self, aBuffer): 

if self.__TAIL_SIZE<=0: 

end=None 

else: 

end=-self.__TAIL_SIZE 

self.__BODY_SIZE=len(aBuffer[self.__HEADER_SIZE:end]) 

self.__body.set_bytes_from_string(aBuffer[self.__HEADER_SIZE:end]) 

 

def __extract_tail(self, aBuffer): 

if self.__TAIL_SIZE<=0: 

# leave the array empty 

return 

else: 

start=-self.__TAIL_SIZE 

self.__tail.set_bytes_from_string(aBuffer[start:]) 

 

def load_packet(self, aBuffer): 

"Load the whole packet from a string" \ 

"WARNING: Using this function will break the hierarchy of preceding protocol layer" 

self.unlink_child() 

 

self.__extract_header(aBuffer) 

self.__extract_body(aBuffer) 

self.__extract_tail(aBuffer) 

 

def get_header_as_string(self): 

return self.__header.get_buffer_as_string() 

 

def get_body_as_string(self): 

self.__update_body_from_child() 

return self.__body.get_buffer_as_string() 

body_string = property(get_body_as_string) 

 

def get_tail_as_string(self): 

return self.__tail.get_buffer_as_string() 

tail_string = property(get_tail_as_string) 

 

def get_packet(self): 

self.__update_body_from_child() 

 

ret = b'' 

 

header = self.get_header_as_string() 

if header: 

ret += header 

 

body = self.get_body_as_string() 

if body: 

ret += body 

 

tail = self.get_tail_as_string() 

if tail: 

ret += tail 

 

return ret 

 

class Header(PacketBuffer,ProtocolLayer): 

"This is the base class from which all protocol definitions extend." 

 

packet_printable = [c for c in string.printable if c not in string.whitespace] + [' '] 

 

ethertype = None 

protocol = None 

def __init__(self, length = None): 

PacketBuffer.__init__(self, length) 

self.auto_checksum = 1 

 

def get_data_as_string(self): 

"Returns all data from children of this header as string" 

 

if self.child(): 

return self.child().get_packet() 

else: 

return None 

 

def get_packet(self): 

"""Returns the raw representation of this packet and its 

children as a string. The output from this method is a packet 

ready to be transmitted over the wire. 

""" 

self.calculate_checksum() 

 

data = self.get_data_as_string() 

if data: 

return self.get_buffer_as_string() + data 

else: 

return self.get_buffer_as_string() 

 

def get_size(self): 

"Return the size of this header and all of it's children" 

tmp_value = self.get_header_size() 

if self.child(): 

tmp_value = tmp_value + self.child().get_size() 

return tmp_value 

 

def calculate_checksum(self): 

"Calculate and set the checksum for this header" 

pass 

 

def get_pseudo_header(self): 

"Pseudo headers can be used to limit over what content will the checksums be calculated." 

# default implementation returns empty array 

return array.array('B') 

 

def load_header(self, aBuffer): 

"Properly set the state of this instance to reflect that of the raw packet passed as argument." 

self.set_bytes_from_string(aBuffer) 

hdr_len = self.get_header_size() 

416 ↛ 417line 416 didn't jump to line 417, because the condition on line 416 was never true if(len(aBuffer) < hdr_len): #we must do something like this 

diff = hdr_len - len(aBuffer) 

for i in range(0, diff): 

aBuffer += '\x00' 

self.set_bytes_from_string(aBuffer[:hdr_len]) 

 

def get_header_size(self): 

"Return the size of this header, that is, not counting neither the size of the children nor of the parents." 

raise RuntimeError("Method %s.get_header_size must be overridden." % self.__class__) 

 

def list_as_hex(self, aList): 

if len(aList): 

ltmp = [] 

line = [] 

count = 0 

for byte in aList: 

if not (count % 2): 

if (count % 16): 

ltmp.append(' ') 

else: 

ltmp.append(' '*4) 

ltmp.append(''.join(line)) 

ltmp.append('\n') 

line = [] 

if chr(byte) in Header.packet_printable: 

line.append(chr(byte)) 

else: 

line.append('.') 

ltmp.append('%.2x' % byte) 

count += 1 

if (count%16): 

left = 16 - (count%16) 

ltmp.append(' ' * (4+(left // 2) + (left*2))) 

ltmp.append(''.join(line)) 

ltmp.append('\n') 

return ltmp 

else: 

return [] 

 

def __str__(self): 

ltmp = self.list_as_hex(self.get_bytes().tolist()) 

 

if self.child(): 

ltmp.append(['\n', str(self.child())]) 

 

if len(ltmp)>0: 

return ''.join(ltmp) 

else: 

return '' 

 

 

 

class Data(Header): 

"""This packet type can hold raw data. It's normally employed to 

hold a packet's innermost layer's contents in those cases for 

which the protocol details are unknown, and there's a copy of a 

valid packet available. 

 

For instance, if all that's known about a certain protocol is that 

a UDP packet with its contents set to "HELLO" initiate a new 

session, creating such packet is as simple as in the following code 

fragment: 

packet = UDP() 

packet.contains('HELLO') 

""" 

 

def __init__(self, aBuffer = None): 

Header.__init__(self) 

if aBuffer: 

self.set_data(aBuffer) 

 

def set_data(self, data): 

self.set_bytes_from_string(data) 

 

def get_size(self): 

return len(self.get_bytes()) 

 

 

class EthernetTag(PacketBuffer): 

"""Represents a VLAN header specified in IEEE 802.1Q and 802.1ad. 

Provides methods for convenient manipulation with header fields.""" 

 

def __init__(self, value=0x81000000): 

PacketBuffer.__init__(self, 4) 

self.set_long(0, value) 

 

def get_tpid(self): 

"""Returns Tag Protocol Identifier""" 

return self.get_word(0) 

 

def set_tpid(self, value): 

"""Sets Tag Protocol Identifier""" 

return self.set_word(0, value) 

 

def get_pcp(self): 

"""Returns Priority Code Point""" 

return (self.get_byte(2) & 0xE0) >> 5 

 

def set_pcp(self, value): 

"""Sets Priority Code Point""" 

orig_value = self.get_byte(2) 

self.set_byte(2, (orig_value & 0x1F) | ((value & 0x07) << 5)) 

 

def get_dei(self): 

"""Returns Drop Eligible Indicator""" 

return (self.get_byte(2) & 0x10) >> 4 

 

def set_dei(self, value): 

"""Sets Drop Eligible Indicator""" 

orig_value = self.get_byte(2) 

self.set_byte(2, orig_value | 0x10 if value else orig_value & 0xEF) 

 

def get_vid(self): 

"""Returns VLAN Identifier""" 

return self.get_word(2) & 0x0FFF 

 

def set_vid(self, value): 

"""Sets VLAN Identifier""" 

orig_value = self.get_word(2) 

self.set_word(2, (orig_value & 0xF000) | (value & 0x0FFF)) 

 

def __str__(self): 

priorities = ( 

'Best Effort', 

'Background', 

'Excellent Effort', 

'Critical Applications', 

'Video, < 100 ms latency and jitter', 

'Voice, < 10 ms latency and jitter', 

'Internetwork Control', 

'Network Control') 

 

pcp = self.get_pcp() 

return '\n'.join(( 

'802.1Q header: 0x{0:08X}'.format(self.get_long(0)), 

'Priority Code Point: {0} ({1})'.format(pcp, priorities[pcp]), 

'Drop Eligible Indicator: {0}'.format(self.get_dei()), 

'VLAN Identifier: {0}'.format(self.get_vid()))) 

 

 

class Ethernet(Header): 

def __init__(self, aBuffer = None): 

Header.__init__(self, 14) 

self.tag_cnt = 0 

560 ↛ exitline 560 didn't return from function '__init__', because the condition on line 560 was never false if(aBuffer): 

self.load_header(aBuffer) 

 

def set_ether_type(self, aValue): 

"Set ethernet data type field to 'aValue'" 

self.set_word(12 + 4*self.tag_cnt, aValue) 

 

def get_ether_type(self): 

"Return ethernet data type field" 

return self.get_word(12 + 4*self.tag_cnt) 

 

def get_tag(self, index): 

"""Returns an EthernetTag initialized from index-th VLAN tag. 

The tags are numbered from 0 to self.tag_cnt-1 as they appear in the frame. 

It is possible to use negative indexes as well.""" 

index = self.__validate_tag_index(index) 

return EthernetTag(self.get_long(12+4*index)) 

 

def set_tag(self, index, tag): 

"""Sets the index-th VLAN tag to contents of an EthernetTag object. 

The tags are numbered from 0 to self.tag_cnt-1 as they appear in the frame. 

It is possible to use negative indexes as well.""" 

index = self.__validate_tag_index(index) 

pos = 12 + 4*index 

for i,val in enumerate(tag.get_bytes()): 

self.set_byte(pos+i, val) 

 

def push_tag(self, tag, index=0): 

"""Inserts contents of an EthernetTag object before the index-th VLAN tag. 

Index defaults to 0 (the top of the stack).""" 

590 ↛ 591line 590 didn't jump to line 591, because the condition on line 590 was never true if index < 0: 

index += self.tag_cnt 

pos = 12 + 4*max(0, min(index, self.tag_cnt)) 

data = self.get_bytes() 

data[pos:pos] = tag.get_bytes() 

self.set_bytes(data) 

self.tag_cnt += 1 

 

def pop_tag(self, index=0): 

"""Removes the index-th VLAN tag and returns it as an EthernetTag object. 

Index defaults to 0 (the top of the stack).""" 

index = self.__validate_tag_index(index) 

pos = 12 + 4*index 

tag = self.get_long(pos) 

data = self.get_bytes() 

del data[pos:pos+4] 

self.set_bytes(data) 

self.tag_cnt -= 1 

return EthernetTag(tag) 

 

def load_header(self, aBuffer): 

self.tag_cnt = 0 

while aBuffer[12+4*self.tag_cnt:14+4*self.tag_cnt] in (b'\x81\x00', b'\x88\xa8', b'\x91\x00'): 

self.tag_cnt += 1 

 

hdr_len = self.get_header_size() 

diff = hdr_len - len(aBuffer) 

617 ↛ 618line 617 didn't jump to line 618, because the condition on line 617 was never true if diff > 0: 

aBuffer += b'\x00'*diff 

self.set_bytes_from_string(aBuffer[:hdr_len]) 

 

def get_header_size(self): 

"Return size of Ethernet header" 

return 14 + 4*self.tag_cnt 

 

def get_packet(self): 

 

627 ↛ 628line 627 didn't jump to line 628, because the condition on line 627 was never true if self.child(): 

try: 

self.set_ether_type(self.child().ethertype) 

except: 

" an Ethernet packet may have a Data() " 

pass 

return Header.get_packet(self) 

 

def get_ether_dhost(self): 

"Return 48 bit destination ethernet address as a 6 byte array" 

return self.get_bytes()[0:6] 

 

def set_ether_dhost(self, aValue): 

"Set destination ethernet address from 6 byte array 'aValue'" 

for i in range(0, 6): 

self.set_byte(i, aValue[i]) 

 

def get_ether_shost(self): 

"Return 48 bit source ethernet address as a 6 byte array" 

return self.get_bytes()[6:12] 

 

def set_ether_shost(self, aValue): 

"Set source ethernet address from 6 byte array 'aValue'" 

for i in range(0, 6): 

self.set_byte(i + 6, aValue[i]) 

 

@staticmethod 

def as_eth_addr(anArray): 

tmp_list = [x > 15 and '%x'%x or '0%x'%x for x in anArray] 

return '' + reduce(lambda x, y: x+':'+y, tmp_list) 

 

def __str__(self): 

tmp_str = 'Ether: ' + self.as_eth_addr(self.get_ether_shost()) + ' -> ' 

tmp_str += self.as_eth_addr(self.get_ether_dhost()) 

if self.child(): 

tmp_str += '\n' + str( self.child()) 

return tmp_str 

 

def __validate_tag_index(self, index): 

"""Adjusts negative indices to their absolute equivalents. 

Raises IndexError when out of range <0, self.tag_cnt-1>.""" 

if index < 0: 

index += self.tag_cnt 

if index < 0 or index >= self.tag_cnt: 

raise IndexError("Tag index out of range") 

return index 

 

# Linux "cooked" capture encapsulation. 

# Used, for instance, for packets returned by the "any" interface. 

class LinuxSLL(Header): 

type_descriptions = [ 

"sent to us by somebody else", 

"broadcast by somebody else", 

"multicast by somebody else", 

"sent to somebody else to somebody else", 

"sent by us", 

] 

 

def __init__(self, aBuffer = None): 

Header.__init__(self, 16) 

if (aBuffer): 

self.load_header(aBuffer) 

 

def set_type(self, type): 

"Sets the packet type field to type" 

self.set_word(0, type) 

 

def get_type(self): 

"Returns the packet type field" 

return self.get_word(0) 

 

def set_arphdr(self, value): 

"Sets the ARPHDR value for the link layer device type" 

self.set_word(2, type) 

 

def get_arphdr(self): 

"Returns the ARPHDR value for the link layer device type" 

return self.get_word(2) 

 

def set_addr_len(self, len): 

"Sets the length of the sender's address field to len" 

self.set_word(4, len) 

 

def get_addr_len(self): 

"Returns the length of the sender's address field" 

return self.get_word(4) 

 

def set_addr(self, addr): 

"Sets the sender's address field to addr. Addr must be at most 8-byte long." 

if (len(addr) < 8): 

addr += b'\0' * (8 - len(addr)) 

self.get_bytes()[6:14] = addr 

 

def get_addr(self): 

"Returns the sender's address field" 

return self.get_bytes()[6:14].tostring() 

 

def set_ether_type(self, aValue): 

"Set ethernet data type field to 'aValue'" 

self.set_word(14, aValue) 

 

def get_ether_type(self): 

"Return ethernet data type field" 

return self.get_word(14) 

 

def get_header_size(self): 

"Return size of packet header" 

return 16 

 

def get_packet(self): 

if self.child(): 

self.set_ether_type(self.child().ethertype) 

return Header.get_packet(self) 

 

def get_type_desc(self): 

type = self.get_type() 

if type < len(LinuxSLL.type_descriptions): 

return LinuxSLL.type_descriptions[type] 

else: 

return "Unknown" 

 

def __str__(self): 

ss = [] 

alen = self.get_addr_len() 

addr = hexlify(self.get_addr()[0:alen]) 

ss.append("Linux SLL: addr=%s type=`%s'" % (addr, self.get_type_desc())) 

if self.child(): 

ss.append(str(self.child())) 

 

return '\n'.join(ss) 

 

 

class IP(Header): 

ethertype = 0x800 

def __init__(self, aBuffer = None): 

Header.__init__(self, 20) 

self.set_ip_v(4) 

self.set_ip_hl(5) 

self.set_ip_ttl(255) 

self.__option_list = [] 

if(aBuffer): 

# When decoding, checksum shouldn't be modified 

self.auto_checksum = 0 

self.load_header(aBuffer) 

 

772 ↛ 773line 772 didn't jump to line 773, because the condition on line 772 was never true if sys.platform.count('bsd'): 

self.is_BSD = True 

else: 

self.is_BSD = False 

 

 

def get_packet(self): 

# set protocol 

780 ↛ 781line 780 didn't jump to line 781, because the condition on line 780 was never true if self.get_ip_p() == 0 and self.child(): 

self.set_ip_p(self.child().protocol) 

 

# set total length 

if self.get_ip_len() == 0: 

self.set_ip_len(self.get_size()) 

 

child_data = self.get_data_as_string() 

 

if self.auto_checksum: 

self.reset_ip_sum() 

 

my_bytes = self.get_bytes() 

 

794 ↛ 795line 794 didn't jump to line 795, because the loop on line 794 never started for op in self.__option_list: 

my_bytes.extend(op.get_bytes()) 

 

# Pad to a multiple of 4 bytes 

num_pad = (4 - (len(my_bytes) % 4)) % 4 

799 ↛ 800line 799 didn't jump to line 800, because the condition on line 799 was never true if num_pad: 

my_bytes.fromstring(b"\0"* num_pad) 

 

# only change ip_hl value if options are present 

803 ↛ 804line 803 didn't jump to line 804, because the condition on line 803 was never true if len(self.__option_list): 

self.set_ip_hl(len(my_bytes) // 4) 

 

 

# set the checksum if the user hasn't modified it 

if self.auto_checksum: 

self.set_ip_sum(self.compute_checksum(my_bytes)) 

 

811 ↛ 812line 811 didn't jump to line 812, because the condition on line 811 was never true if child_data is None: 

return my_bytes.tostring() 

else: 

return my_bytes.tostring() + child_data 

 

 

 

# def calculate_checksum(self, buffer = None): 

# tmp_value = self.get_ip_sum() 

# if self.auto_checksum and (not tmp_value): 

# if buffer: 

# tmp_bytes = buffer 

# else: 

# tmp_bytes = self.bytes[0:self.get_header_size()] 

# 

# self.set_ip_sum(self.compute_checksum(tmp_bytes)) 

 

 

def get_pseudo_header(self): 

pseudo_buf = array.array("B") 

pseudo_buf.extend(self.get_bytes()[12:20]) 

pseudo_buf.fromlist([0]) 

pseudo_buf.extend(self.get_bytes()[9:10]) 

tmp_size = self.child().get_size() 

 

size_str = struct.pack("!H", tmp_size) 

 

pseudo_buf.fromstring(size_str) 

return pseudo_buf 

 

def add_option(self, option): 

self.__option_list.append(option) 

sum = 0 

for op in self.__option_list: 

sum += op.get_len() 

if sum > 40: 

raise ImpactPacketException("Options overflowed in IP packet with length: %d" % sum) 

 

 

def get_ip_v(self): 

n = self.get_byte(0) 

return (n >> 4) 

 

def set_ip_v(self, value): 

n = self.get_byte(0) 

version = value & 0xF 

n = n & 0xF 

n = n | (version << 4) 

self.set_byte(0, n) 

 

def get_ip_hl(self): 

n = self.get_byte(0) 

return (n & 0xF) 

 

def set_ip_hl(self, value): 

n = self.get_byte(0) 

len = value & 0xF 

n = n & 0xF0 

n = (n | len) 

self.set_byte(0, n) 

 

def get_ip_tos(self): 

return self.get_byte(1) 

 

def set_ip_tos(self,value): 

self.set_byte(1, value) 

 

def get_ip_len(self): 

879 ↛ 880line 879 didn't jump to line 880, because the condition on line 879 was never true if self.is_BSD: 

return self.get_word(2, order = '=') 

else: 

return self.get_word(2) 

 

def set_ip_len(self, value): 

885 ↛ 886line 885 didn't jump to line 886, because the condition on line 885 was never true if self.is_BSD: 

self.set_word(2, value, order = '=') 

else: 

self.set_word(2, value) 

 

def get_ip_id(self): 

return self.get_word(4) 

def set_ip_id(self, value): 

return self.set_word(4, value) 

 

def get_ip_off(self): 

896 ↛ 897line 896 didn't jump to line 897, because the condition on line 896 was never true if self.is_BSD: 

return self.get_word(6, order = '=') 

else: 

return self.get_word(6) 

 

def set_ip_off(self, aValue): 

902 ↛ 903line 902 didn't jump to line 903, because the condition on line 902 was never true if self.is_BSD: 

self.set_word(6, aValue, order = '=') 

else: 

self.set_word(6, aValue) 

 

def get_ip_offmask(self): 

return self.get_ip_off() & 0x1FFF 

 

def set_ip_offmask(self, aValue): 

tmp_value = self.get_ip_off() & 0xD000 

tmp_value |= aValue 

self.set_ip_off(tmp_value) 

 

def get_ip_rf(self): 

return self.get_ip_off() & 0x8000 

 

def set_ip_rf(self, aValue): 

tmp_value = self.get_ip_off() 

920 ↛ 921line 920 didn't jump to line 921, because the condition on line 920 was never true if aValue: 

tmp_value |= 0x8000 

else: 

my_not = 0xFFFF ^ 0x8000 

tmp_value &= my_not 

self.set_ip_off(tmp_value) 

 

def get_ip_df(self): 

return self.get_ip_off() & 0x4000 

 

def set_ip_df(self, aValue): 

tmp_value = self.get_ip_off() 

932 ↛ 933line 932 didn't jump to line 933, because the condition on line 932 was never true if aValue: 

tmp_value |= 0x4000 

else: 

my_not = 0xFFFF ^ 0x4000 

tmp_value &= my_not 

self.set_ip_off(tmp_value) 

 

def get_ip_mf(self): 

return self.get_ip_off() & 0x2000 

 

def set_ip_mf(self, aValue): 

tmp_value = self.get_ip_off() 

944 ↛ 945line 944 didn't jump to line 945, because the condition on line 944 was never true if aValue: 

tmp_value |= 0x2000 

else: 

my_not = 0xFFFF ^ 0x2000 

tmp_value &= my_not 

self.set_ip_off(tmp_value) 

 

 

def fragment_by_list(self, aList): 

if self.child(): 

proto = self.child().protocol 

else: 

proto = 0 

 

child_data = self.get_data_as_string() 

if not child_data: 

return [self] 

 

ip_header_bytes = self.get_bytes() 

current_offset = 0 

fragment_list = [] 

 

for frag_size in aList: 

ip = IP() 

ip.set_bytes(ip_header_bytes) # copy of original header 

ip.set_ip_p(proto) 

 

 

if frag_size % 8: # round this fragment size up to next multiple of 8 

frag_size += 8 - (frag_size % 8) 

 

 

ip.set_ip_offmask(current_offset // 8) 

current_offset += frag_size 

 

data = Data(child_data[:frag_size]) 

child_data = child_data[frag_size:] 

 

ip.set_ip_len(20 + data.get_size()) 

ip.contains(data) 

 

 

if child_data: 

 

ip.set_ip_mf(1) 

 

fragment_list.append(ip) 

else: # no more data bytes left to add to fragments 

 

ip.set_ip_mf(0) 

 

fragment_list.append(ip) 

return fragment_list 

 

if child_data: # any remaining data? 

# create a fragment containing all of the remaining child_data 

ip = IP() 

ip.set_bytes(ip_header_bytes) 

ip.set_ip_offmask(current_offset) 

ip.set_ip_len(20 + len(child_data)) 

data = Data(child_data) 

ip.contains(data) 

fragment_list.append(ip) 

 

return fragment_list 

 

 

def fragment_by_size(self, aSize): 

data_len = len(self.get_data_as_string()) 

num_frags = data_len // aSize 

 

if data_len % aSize: 

num_frags += 1 

 

size_list = [] 

for i in range(0, num_frags): 

size_list.append(aSize) 

return self.fragment_by_list(size_list) 

 

 

def get_ip_ttl(self): 

return self.get_byte(8) 

def set_ip_ttl(self, value): 

self.set_byte(8, value) 

 

def get_ip_p(self): 

return self.get_byte(9) 

 

def set_ip_p(self, value): 

self.set_byte(9, value) 

 

def get_ip_sum(self): 

return self.get_word(10) 

def set_ip_sum(self, value): 

self.auto_checksum = 0 

self.set_word(10, value) 

 

def reset_ip_sum(self): 

self.set_ip_sum(0x0000) 

self.auto_checksum = 1 

 

def get_ip_src(self): 

return self.get_ip_address(12) 

def set_ip_src(self, value): 

self.set_ip_address(12, value) 

 

def get_ip_dst(self): 

return self.get_ip_address(16) 

 

def set_ip_dst(self, value): 

self.set_ip_address(16, value) 

 

def get_header_size(self): 

op_len = 0 

1058 ↛ 1059line 1058 didn't jump to line 1059, because the loop on line 1058 never started for op in self.__option_list: 

op_len += op.get_len() 

 

num_pad = (4 - (op_len % 4)) % 4 

 

return 20 + op_len + num_pad 

 

def load_header(self, aBuffer): 

self.set_bytes_from_string(aBuffer[:20]) 

opt_left = (self.get_ip_hl() - 5) * 4 

opt_bytes = array.array('B', aBuffer[20:(20 + opt_left)]) 

1069 ↛ 1070line 1069 didn't jump to line 1070, because the condition on line 1069 was never true if len(opt_bytes) != opt_left: 

raise ImpactPacketException("Cannot load options from truncated packet") 

 

 

1073 ↛ 1074line 1073 didn't jump to line 1074, because the condition on line 1073 was never true while opt_left: 

op_type = opt_bytes[0] 

if op_type == IPOption.IPOPT_EOL or op_type == IPOption.IPOPT_NOP: 

new_option = IPOption(op_type) 

op_len = 1 

else: 

op_len = opt_bytes[1] 

if op_len > len(opt_bytes): 

raise ImpactPacketException("IP Option length is too high") 

 

new_option = IPOption(op_type, op_len) 

new_option.set_bytes(opt_bytes[:op_len]) 

 

opt_bytes = opt_bytes[op_len:] 

opt_left -= op_len 

self.add_option(new_option) 

if op_type == IPOption.IPOPT_EOL: 

break 

 

 

def __str__(self): 

flags = ' ' 

if self.get_ip_df(): 

flags += 'DF ' 

if self.get_ip_mf(): 

flags += 'MF ' 

if self.get_ip_rf(): 

flags += 'RF ' 

tmp_str = 'IP%s%s -> %s ' % (flags, self.get_ip_src(),self.get_ip_dst()) 

for op in self.__option_list: 

tmp_str += '\n' + str(op) 

if self.child(): 

tmp_str += '\n' + str(self.child()) 

return tmp_str 

 

 

class IPOption(PacketBuffer): 

IPOPT_EOL = 0 

IPOPT_NOP = 1 

IPOPT_RR = 7 

IPOPT_TS = 68 

IPOPT_LSRR = 131 

IPOPT_SSRR = 137 

 

def __init__(self, opcode = 0, size = None): 

if size and (size < 3 or size > 40): 

raise ImpactPacketException("IP Options must have a size between 3 and 40 bytes") 

 

if(opcode == IPOption.IPOPT_EOL): 

PacketBuffer.__init__(self, 1) 

self.set_code(IPOption.IPOPT_EOL) 

elif(opcode == IPOption.IPOPT_NOP): 

PacketBuffer.__init__(self, 1) 

self.set_code(IPOption.IPOPT_NOP) 

elif(opcode == IPOption.IPOPT_RR): 

if not size: 

size = 39 

PacketBuffer.__init__(self, size) 

self.set_code(IPOption.IPOPT_RR) 

self.set_len(size) 

self.set_ptr(4) 

 

elif(opcode == IPOption.IPOPT_LSRR): 

if not size: 

size = 39 

PacketBuffer.__init__(self, size) 

self.set_code(IPOption.IPOPT_LSRR) 

self.set_len(size) 

self.set_ptr(4) 

 

elif(opcode == IPOption.IPOPT_SSRR): 

if not size: 

size = 39 

PacketBuffer.__init__(self, size) 

self.set_code(IPOption.IPOPT_SSRR) 

self.set_len(size) 

self.set_ptr(4) 

 

elif(opcode == IPOption.IPOPT_TS): 

if not size: 

size = 40 

PacketBuffer.__init__(self, size) 

self.set_code(IPOption.IPOPT_TS) 

self.set_len(size) 

self.set_ptr(5) 

self.set_flags(0) 

else: 

if not size: 

raise ImpactPacketException("Size required for this type") 

PacketBuffer.__init__(self,size) 

self.set_code(opcode) 

self.set_len(size) 

 

 

def append_ip(self, ip): 

op = self.get_code() 

if not (op == IPOption.IPOPT_RR or op == IPOption.IPOPT_LSRR or op == IPOption.IPOPT_SSRR or op == IPOption.IPOPT_TS): 

raise ImpactPacketException("append_ip() not support for option type %d" % self.opt_type) 

 

p = self.get_ptr() 

if not p: 

raise ImpactPacketException("append_ip() failed, option ptr uninitialized") 

 

if (p + 4) > self.get_len(): 

raise ImpactPacketException("append_ip() would overflow option") 

 

self.set_ip_address(p - 1, ip) 

p += 4 

self.set_ptr(p) 

 

 

def set_code(self, value): 

self.set_byte(0, value) 

 

def get_code(self): 

return self.get_byte(0) 

 

 

def set_flags(self, flags): 

if not (self.get_code() == IPOption.IPOPT_TS): 

raise ImpactPacketException("Operation only supported on Timestamp option") 

self.set_byte(3, flags) 

 

def get_flags(self, flags): 

if not (self.get_code() == IPOption.IPOPT_TS): 

raise ImpactPacketException("Operation only supported on Timestamp option") 

return self.get_byte(3) 

 

 

def set_len(self, len): 

self.set_byte(1, len) 

 

 

def set_ptr(self, ptr): 

self.set_byte(2, ptr) 

 

def get_ptr(self): 

return self.get_byte(2) 

 

def get_len(self): 

return len(self.get_bytes()) 

 

 

def __str__(self): 

map = {IPOption.IPOPT_EOL : "End of List ", 

IPOption.IPOPT_NOP : "No Operation ", 

IPOption.IPOPT_RR : "Record Route ", 

IPOption.IPOPT_TS : "Timestamp ", 

IPOption.IPOPT_LSRR : "Loose Source Route ", 

IPOption.IPOPT_SSRR : "Strict Source Route "} 

 

tmp_str = "\tIP Option: " 

op = self.get_code() 

if op in map: 

tmp_str += map[op] 

else: 

tmp_str += "Code: %d " % op 

 

if op == IPOption.IPOPT_RR or op == IPOption.IPOPT_LSRR or op ==IPOption.IPOPT_SSRR: 

tmp_str += self.print_addresses() 

 

 

return tmp_str 

 

 

def print_addresses(self): 

p = 3 

tmp_str = "[" 

if self.get_len() >= 7: # at least one complete IP address 

while 1: 

if p + 1 == self.get_ptr(): 

tmp_str += "#" 

tmp_str += self.get_ip_address(p) 

p += 4 

if p >= self.get_len(): 

break 

else: 

tmp_str += ", " 

tmp_str += "] " 

if self.get_ptr() % 4: # ptr field should be a multiple of 4 

tmp_str += "nonsense ptr field: %d " % self.get_ptr() 

return tmp_str 

 

 

class UDP(Header): 

protocol = 17 

def __init__(self, aBuffer = None): 

Header.__init__(self, 8) 

1261 ↛ 1262line 1261 didn't jump to line 1262, because the condition on line 1261 was never true if(aBuffer): 

self.load_header(aBuffer) 

 

def get_uh_sport(self): 

return self.get_word(0) 

def set_uh_sport(self, value): 

self.set_word(0, value) 

 

def get_uh_dport(self): 

return self.get_word(2) 

def set_uh_dport(self, value): 

self.set_word(2, value) 

 

def get_uh_ulen(self): 

return self.get_word(4) 

 

def set_uh_ulen(self, value): 

self.set_word(4, value) 

 

def get_uh_sum(self): 

return self.get_word(6) 

 

def set_uh_sum(self, value): 

self.set_word(6, value) 

self.auto_checksum = 0 

 

def calculate_checksum(self): 

if self.auto_checksum and (not self.get_uh_sum()): 

# if there isn't a parent to grab a pseudo-header from we'll assume the user knows what they're doing 

# and won't meddle with the checksum or throw an exception 

if not self.parent(): 

return 

 

buffer = self.parent().get_pseudo_header() 

 

buffer += self.get_bytes() 

data = self.get_data_as_string() 

if(data): 

buffer.fromstring(data) 

self.set_uh_sum(self.compute_checksum(buffer)) 

 

def get_header_size(self): 

return 8 

 

def __str__(self): 

tmp_str = 'UDP %d -> %d' % (self.get_uh_sport(), self.get_uh_dport()) 

if self.child(): 

tmp_str += '\n' + str(self.child()) 

return tmp_str 

 

def get_packet(self): 

# set total length 

if(self.get_uh_ulen() == 0): 

self.set_uh_ulen(self.get_size()) 

return Header.get_packet(self) 

 

class TCP(Header): 

protocol = 6 

TCP_FLAGS_MASK = 0x00FF # lowest 16 bits are the flags 

def __init__(self, aBuffer = None): 

Header.__init__(self, 20) 

self.set_th_off(5) 

self.__option_list = [] 

1324 ↛ exitline 1324 didn't return from function '__init__', because the condition on line 1324 was never false if aBuffer: 

self.load_header(aBuffer) 

 

def add_option(self, option): 

self.__option_list.append(option) 

 

sum = 0 

for op in self.__option_list: 

sum += op.get_size() 

 

1334 ↛ 1335line 1334 didn't jump to line 1335, because the condition on line 1334 was never true if sum > 40: 

raise ImpactPacketException("Cannot add TCP option, would overflow option space") 

 

def get_options(self): 

return self.__option_list 

 

def swapSourceAndDestination(self): 

oldSource = self.get_th_sport() 

self.set_th_sport(self.get_th_dport()) 

self.set_th_dport(oldSource) 

 

# 

# Header field accessors 

# 

 

def set_th_sport(self, aValue): 

self.set_word(0, aValue) 

 

def get_th_sport(self): 

return self.get_word(0) 

 

def get_th_dport(self): 

return self.get_word(2) 

 

def set_th_dport(self, aValue): 

self.set_word(2, aValue) 

 

def get_th_seq(self): 

return self.get_long(4) 

 

def set_th_seq(self, aValue): 

self.set_long(4, aValue) 

 

def get_th_ack(self): 

return self.get_long(8) 

 

def set_th_ack(self, aValue): 

self.set_long(8, aValue) 

 

def get_th_flags(self): 

return self.get_word(12) & self.TCP_FLAGS_MASK 

 

def set_th_flags(self, aValue): 

masked = self.get_word(12) & (~self.TCP_FLAGS_MASK) 

nb = masked | (aValue & self.TCP_FLAGS_MASK) 

return self.set_word(12, nb, ">") 

 

def get_th_win(self): 

return self.get_word(14) 

 

def set_th_win(self, aValue): 

self.set_word(14, aValue) 

 

def set_th_sum(self, aValue): 

self.set_word(16, aValue) 

self.auto_checksum = 0 

 

def get_th_sum(self): 

return self.get_word(16) 

 

def get_th_urp(self): 

return self.get_word(18) 

 

def set_th_urp(self, aValue): 

return self.set_word(18, aValue) 

 

# Flag accessors 

 

def get_th_reserved(self): 

tmp_value = self.get_byte(12) & 0x0f 

return tmp_value 

 

 

def get_th_off(self): 

tmp_value = self.get_byte(12) >> 4 

return tmp_value 

 

def set_th_off(self, aValue): 

mask = 0xF0 

masked = self.get_byte(12) & (~mask) 

nb = masked | ( (aValue << 4) & mask) 

return self.set_byte(12, nb) 

 

def get_CWR(self): 

return self.get_flag(128) 

def set_CWR(self): 

return self.set_flags(128) 

def reset_CWR(self): 

return self.reset_flags(128) 

 

def get_ECE(self): 

return self.get_flag(64) 

def set_ECE(self): 

return self.set_flags(64) 

def reset_ECE(self): 

return self.reset_flags(64) 

 

def get_URG(self): 

return self.get_flag(32) 

def set_URG(self): 

return self.set_flags(32) 

def reset_URG(self): 

return self.reset_flags(32) 

 

def get_ACK(self): 

return self.get_flag(16) 

def set_ACK(self): 

return self.set_flags(16) 

def reset_ACK(self): 

return self.reset_flags(16) 

 

def get_PSH(self): 

return self.get_flag(8) 

def set_PSH(self): 

return self.set_flags(8) 

def reset_PSH(self): 

return self.reset_flags(8) 

 

def get_RST(self): 

return self.get_flag(4) 

def set_RST(self): 

return self.set_flags(4) 

def reset_RST(self): 

return self.reset_flags(4) 

 

def get_SYN(self): 

return self.get_flag(2) 

def set_SYN(self): 

return self.set_flags(2) 

def reset_SYN(self): 

return self.reset_flags(2) 

 

def get_FIN(self): 

return self.get_flag(1) 

def set_FIN(self): 

return self.set_flags(1) 

def reset_FIN(self): 

return self.reset_flags(1) 

 

# Overridden Methods 

 

def get_header_size(self): 

return 20 + len(self.get_padded_options()) 

 

def calculate_checksum(self): 

1479 ↛ 1482line 1479 didn't jump to line 1482, because the condition on line 1479 was never false if not self.auto_checksum or not self.parent(): 

return 

 

self.set_th_sum(0) 

buffer = self.parent().get_pseudo_header() 

buffer += self.get_bytes() 

buffer += self.get_padded_options() 

 

data = self.get_data_as_string() 

if(data): 

buffer.fromstring(data) 

 

res = self.compute_checksum(buffer) 

 

self.set_th_sum(self.compute_checksum(buffer)) 

 

def get_packet(self): 

"Returns entire packet including child data as a string. This is the function used to extract the final packet" 

 

# only change th_off value if options are present 

1499 ↛ 1502line 1499 didn't jump to line 1502, because the condition on line 1499 was never false if len(self.__option_list): 

self.set_th_off(self.get_header_size() // 4) 

 

self.calculate_checksum() 

 

bytes = self.get_bytes() + self.get_padded_options() 

data = self.get_data_as_string() 

 

1507 ↛ 1508line 1507 didn't jump to line 1508, because the condition on line 1507 was never true if data: 

return bytes.tostring() + data 

else: 

return bytes.tostring() 

 

def load_header(self, aBuffer): 

self.set_bytes_from_string(aBuffer[:20]) 

opt_left = (self.get_th_off() - 5) * 4 

opt_bytes = array.array('B', aBuffer[20:(20 + opt_left)]) 

1516 ↛ 1517line 1516 didn't jump to line 1517, because the condition on line 1516 was never true if len(opt_bytes) != opt_left: 

raise ImpactPacketException("Cannot load options from truncated packet") 

 

while opt_left: 

op_kind = opt_bytes[0] 

if op_kind == TCPOption.TCPOPT_EOL or op_kind == TCPOption.TCPOPT_NOP: 

new_option = TCPOption(op_kind) 

op_len = 1 

else: 

op_len = opt_bytes[1] 

1526 ↛ 1527line 1526 didn't jump to line 1527, because the condition on line 1526 was never true if op_len > len(opt_bytes): 

raise ImpactPacketException("TCP Option length is too high") 

1528 ↛ 1529line 1528 didn't jump to line 1529, because the condition on line 1528 was never true if op_len < 2: 

raise ImpactPacketException("TCP Option length is too low") 

 

new_option = TCPOption(op_kind) 

new_option.set_bytes(opt_bytes[:op_len]) 

 

opt_bytes = opt_bytes[op_len:] 

opt_left -= op_len 

self.add_option(new_option) 

1537 ↛ 1538line 1537 didn't jump to line 1538, because the condition on line 1537 was never true if op_kind == TCPOption.TCPOPT_EOL: 

break 

 

# 

# Private 

# 

 

def get_flag(self, bit): 

if self.get_th_flags() & bit: 

return 1 

else: 

return 0 

 

def reset_flags(self, aValue): 

tmp_value = self.get_th_flags() & (~aValue) 

return self.set_th_flags(tmp_value) 

 

def set_flags(self, aValue): 

tmp_value = self.get_th_flags() | aValue 

return self.set_th_flags(tmp_value) 

 

def get_padded_options(self): 

"Return an array containing all options padded to a 4 byte boundary" 

op_buf = array.array('B') 

for op in self.__option_list: 

op_buf += op.get_bytes() 

num_pad = (4 - (len(op_buf) % 4)) % 4 

1564 ↛ 1565line 1564 didn't jump to line 1565, because the condition on line 1564 was never true if num_pad: 

op_buf.fromstring("\0" * num_pad) 

return op_buf 

 

def __str__(self): 

tmp_str = 'TCP ' 

if self.get_ECE(): 

tmp_str += 'ece ' 

if self.get_CWR(): 

tmp_str += 'cwr ' 

if self.get_ACK(): 

tmp_str += 'ack ' 

if self.get_FIN(): 

tmp_str += 'fin ' 

if self.get_PSH(): 

tmp_str += 'push ' 

if self.get_RST(): 

tmp_str += 'rst ' 

if self.get_SYN(): 

tmp_str += 'syn ' 

if self.get_URG(): 

tmp_str += 'urg ' 

tmp_str += '%d -> %d' % (self.get_th_sport(), self.get_th_dport()) 

for op in self.__option_list: 

tmp_str += '\n' + str(op) 

 

if self.child(): 

tmp_str += '\n' + str(self.child()) 

return tmp_str 

 

 

class TCPOption(PacketBuffer): 

TCPOPT_EOL = 0 

TCPOPT_NOP = 1 

TCPOPT_MAXSEG = 2 

TCPOPT_WINDOW = 3 

TCPOPT_SACK_PERMITTED = 4 

TCPOPT_SACK = 5 

TCPOPT_TIMESTAMP = 8 

TCPOPT_SIGNATURE = 19 

 

 

def __init__(self, kind, data = None): 

 

1608 ↛ 1609line 1608 didn't jump to line 1609, because the condition on line 1608 was never true if kind == TCPOption.TCPOPT_EOL: 

PacketBuffer.__init__(self, 1) 

self.set_kind(TCPOption.TCPOPT_EOL) 

elif kind == TCPOption.TCPOPT_NOP: 

PacketBuffer.__init__(self, 1) 

self.set_kind(TCPOption.TCPOPT_NOP) 

elif kind == TCPOption.TCPOPT_MAXSEG: 

PacketBuffer.__init__(self, 4) 

self.set_kind(TCPOption.TCPOPT_MAXSEG) 

self.set_len(4) 

1618 ↛ 1619line 1618 didn't jump to line 1619, because the condition on line 1618 was never true if data: 

self.set_mss(data) 

else: 

self.set_mss(512) 

elif kind == TCPOption.TCPOPT_WINDOW: 

PacketBuffer.__init__(self, 3) 

self.set_kind(TCPOption.TCPOPT_WINDOW) 

self.set_len(3) 

1626 ↛ 1627line 1626 didn't jump to line 1627, because the condition on line 1626 was never true if data: 

self.set_shift_cnt(data) 

else: 

self.set_shift_cnt(0) 

elif kind == TCPOption.TCPOPT_TIMESTAMP: 

PacketBuffer.__init__(self, 10) 

self.set_kind(TCPOption.TCPOPT_TIMESTAMP) 

self.set_len(10) 

1634 ↛ 1635line 1634 didn't jump to line 1635, because the condition on line 1634 was never true if data: 

self.set_ts(data) 

else: 

self.set_ts(0) 

1638 ↛ 1643line 1638 didn't jump to line 1643, because the condition on line 1638 was never false elif kind == TCPOption.TCPOPT_SACK_PERMITTED: 

PacketBuffer.__init__(self, 2) 

self.set_kind(TCPOption.TCPOPT_SACK_PERMITTED) 

self.set_len(2) 

 

elif kind == TCPOption.TCPOPT_SACK: 

PacketBuffer.__init__(self, 2) 

self.set_kind(TCPOption.TCPOPT_SACK) 

 

def set_left_edge(self, aValue): 

self.set_long (2, aValue) 

 

def set_right_edge(self, aValue): 

self.set_long (6, aValue) 

 

def set_kind(self, kind): 

self.set_byte(0, kind) 

 

 

def get_kind(self): 

return self.get_byte(0) 

 

 

def set_len(self, len): 

1662 ↛ 1663line 1662 didn't jump to line 1663, because the condition on line 1662 was never true if self.get_size() < 2: 

raise ImpactPacketException("Cannot set length field on an option having a size smaller than 2 bytes") 

self.set_byte(1, len) 

 

def get_len(self): 

if self.get_size() < 2: 

raise ImpactPacketException("Cannot retrieve length field from an option having a size smaller than 2 bytes") 

return self.get_byte(1) 

 

def get_size(self): 

return len(self.get_bytes()) 

 

 

def set_mss(self, len): 

1676 ↛ 1677line 1676 didn't jump to line 1677, because the condition on line 1676 was never true if self.get_kind() != TCPOption.TCPOPT_MAXSEG: 

raise ImpactPacketException("Can only set MSS on TCPOPT_MAXSEG option") 

self.set_word(2, len) 

 

def get_mss(self): 

if self.get_kind() != TCPOption.TCPOPT_MAXSEG: 

raise ImpactPacketException("Can only retrieve MSS from TCPOPT_MAXSEG option") 

return self.get_word(2) 

 

def set_shift_cnt(self, cnt): 

1686 ↛ 1687line 1686 didn't jump to line 1687, because the condition on line 1686 was never true if self.get_kind() != TCPOption.TCPOPT_WINDOW: 

raise ImpactPacketException("Can only set Shift Count on TCPOPT_WINDOW option") 

self.set_byte(2, cnt) 

 

def get_shift_cnt(self): 

if self.get_kind() != TCPOption.TCPOPT_WINDOW: 

raise ImpactPacketException("Can only retrieve Shift Count from TCPOPT_WINDOW option") 

return self.get_byte(2) 

 

def get_ts(self): 

if self.get_kind() != TCPOption.TCPOPT_TIMESTAMP: 

raise ImpactPacketException("Can only retrieve timestamp from TCPOPT_TIMESTAMP option") 

return self.get_long(2) 

 

def set_ts(self, ts): 

1701 ↛ 1702line 1701 didn't jump to line 1702, because the condition on line 1701 was never true if self.get_kind() != TCPOption.TCPOPT_TIMESTAMP: 

raise ImpactPacketException("Can only set timestamp on TCPOPT_TIMESTAMP option") 

self.set_long(2, ts) 

 

def get_ts_echo(self): 

if self.get_kind() != TCPOption.TCPOPT_TIMESTAMP: 

raise ImpactPacketException("Can only retrieve timestamp from TCPOPT_TIMESTAMP option") 

return self.get_long(6) 

 

def set_ts_echo(self, ts): 

if self.get_kind() != TCPOption.TCPOPT_TIMESTAMP: 

raise ImpactPacketException("Can only set timestamp on TCPOPT_TIMESTAMP option") 

self.set_long(6, ts) 

 

def __str__(self): 

map = { TCPOption.TCPOPT_EOL : "End of List ", 

TCPOption.TCPOPT_NOP : "No Operation ", 

TCPOption.TCPOPT_MAXSEG : "Maximum Segment Size ", 

TCPOption.TCPOPT_WINDOW : "Window Scale ", 

TCPOption.TCPOPT_TIMESTAMP : "Timestamp " } 

 

tmp_str = "\tTCP Option: " 

op = self.get_kind() 

if op in map: 

tmp_str += map[op] 

else: 

tmp_str += " kind: %d " % op 

if op == TCPOption.TCPOPT_MAXSEG: 

tmp_str += " MSS : %d " % self.get_mss() 

elif op == TCPOption.TCPOPT_WINDOW: 

tmp_str += " Shift Count: %d " % self.get_shift_cnt() 

elif op == TCPOption.TCPOPT_TIMESTAMP: 

pass # TODO 

return tmp_str 

 

class ICMP(Header): 

protocol = 1 

ICMP_ECHOREPLY = 0 

ICMP_UNREACH = 3 

ICMP_UNREACH_NET = 0 

ICMP_UNREACH_HOST = 1 

ICMP_UNREACH_PROTOCOL = 2 

ICMP_UNREACH_PORT = 3 

ICMP_UNREACH_NEEDFRAG = 4 

ICMP_UNREACH_SRCFAIL = 5 

ICMP_UNREACH_NET_UNKNOWN = 6 

ICMP_UNREACH_HOST_UNKNOWN = 7 

ICMP_UNREACH_ISOLATED = 8 

ICMP_UNREACH_NET_PROHIB = 9 

ICMP_UNREACH_HOST_PROHIB = 10 

ICMP_UNREACH_TOSNET = 11 

ICMP_UNREACH_TOSHOST = 12 

ICMP_UNREACH_FILTERPROHIB = 13 

ICMP_UNREACH_HOST_PRECEDENCE = 14 

ICMP_UNREACH_PRECEDENCE_CUTOFF = 15 

ICMP_SOURCEQUENCH = 4 

ICMP_REDIRECT = 5 

ICMP_REDIRECT_NET = 0 

ICMP_REDIRECT_HOST = 1 

ICMP_REDIRECT_TOSNET = 2 

ICMP_REDIRECT_TOSHOST = 3 

ICMP_ALTHOSTADDR = 6 

ICMP_ECHO = 8 

ICMP_ROUTERADVERT = 9 

ICMP_ROUTERSOLICIT = 10 

ICMP_TIMXCEED = 11 

ICMP_TIMXCEED_INTRANS = 0 

ICMP_TIMXCEED_REASS = 1 

ICMP_PARAMPROB = 12 

ICMP_PARAMPROB_ERRATPTR = 0 

ICMP_PARAMPROB_OPTABSENT = 1 

ICMP_PARAMPROB_LENGTH = 2 

ICMP_TSTAMP = 13 

ICMP_TSTAMPREPLY = 14 

ICMP_IREQ = 15 

ICMP_IREQREPLY = 16 

ICMP_MASKREQ = 17 

ICMP_MASKREPLY = 18 

 

def __init__(self, aBuffer = None): 

Header.__init__(self, 8) 

if aBuffer: 

self.load_header(aBuffer) 

 

def get_header_size(self): 

anamolies = { ICMP.ICMP_TSTAMP : 20, ICMP.ICMP_TSTAMPREPLY : 20, ICMP.ICMP_MASKREQ : 12, ICMP.ICMP_MASKREPLY : 12 } 

1787 ↛ 1788line 1787 didn't jump to line 1788, because the condition on line 1787 was never true if self.get_icmp_type() in anamolies: 

return anamolies[self.get_icmp_type()] 

else: 

return 8 

 

def get_icmp_type(self): 

return self.get_byte(0) 

 

def set_icmp_type(self, aValue): 

self.set_byte(0, aValue) 

 

def get_icmp_code(self): 

return self.get_byte(1) 

 

def set_icmp_code(self, aValue): 

self.set_byte(1, aValue) 

 

def get_icmp_cksum(self): 

return self.get_word(2) 

 

def set_icmp_cksum(self, aValue): 

self.set_word(2, aValue) 

self.auto_checksum = 0 

 

def get_icmp_gwaddr(self): 

return self.get_ip_address(4) 

 

def set_icmp_gwaddr(self, ip): 

self.set_ip_address(4, ip) 

 

def get_icmp_id(self): 

return self.get_word(4) 

 

def set_icmp_id(self, aValue): 

self.set_word(4, aValue) 

 

def get_icmp_seq(self): 

return self.get_word(6) 

 

def set_icmp_seq(self, aValue): 

self.set_word(6, aValue) 

 

def get_icmp_void(self): 

return self.get_long(4) 

 

def set_icmp_void(self, aValue): 

self.set_long(4, aValue) 

 

 

def get_icmp_nextmtu(self): 

return self.get_word(6) 

 

def set_icmp_nextmtu(self, aValue): 

self.set_word(6, aValue) 

 

def get_icmp_num_addrs(self): 

return self.get_byte(4) 

 

def set_icmp_num_addrs(self, aValue): 

self.set_byte(4, aValue) 

 

def get_icmp_wpa(self): 

return self.get_byte(5) 

 

def set_icmp_wpa(self, aValue): 

self.set_byte(5, aValue) 

 

def get_icmp_lifetime(self): 

return self.get_word(6) 

 

def set_icmp_lifetime(self, aValue): 

self.set_word(6, aValue) 

 

def get_icmp_otime(self): 

return self.get_long(8) 

 

def set_icmp_otime(self, aValue): 

self.set_long(8, aValue) 

 

def get_icmp_rtime(self): 

return self.get_long(12) 

 

def set_icmp_rtime(self, aValue): 

self.set_long(12, aValue) 

 

def get_icmp_ttime(self): 

return self.get_long(16) 

 

def set_icmp_ttime(self, aValue): 

self.set_long(16, aValue) 

 

def get_icmp_mask(self): 

return self.get_ip_address(8) 

 

def set_icmp_mask(self, mask): 

self.set_ip_address(8, mask) 

 

 

def calculate_checksum(self): 

if self.auto_checksum and (not self.get_icmp_cksum()): 

buffer = self.get_buffer_as_string() 

data = self.get_data_as_string() 

1889 ↛ 1892line 1889 didn't jump to line 1892, because the condition on line 1889 was never false if data: 

buffer += data 

 

tmp_array = array.array('B', buffer) 

self.set_icmp_cksum(self.compute_checksum(tmp_array)) 

 

def get_type_name(self, aType): 

tmp_type = {0:'ECHOREPLY', 3:'UNREACH', 4:'SOURCEQUENCH',5:'REDIRECT', 6:'ALTHOSTADDR', 8:'ECHO', 9:'ROUTERADVERT', 10:'ROUTERSOLICIT', 11:'TIMXCEED', 12:'PARAMPROB', 13:'TSTAMP', 14:'TSTAMPREPLY', 15:'IREQ', 16:'IREQREPLY', 17:'MASKREQ', 18:'MASKREPLY', 30:'TRACEROUTE', 31:'DATACONVERR', 32:'MOBILE REDIRECT', 33:'IPV6 WHEREAREYOU', 34:'IPV6 IAMHERE', 35:'MOBILE REGREQUEST', 36:'MOBILE REGREPLY', 39:'SKIP', 40:'PHOTURIS'} 

answer = tmp_type.get(aType, 'UNKNOWN') 

return answer 

 

def get_code_name(self, aType, aCode): 

tmp_code = {3:['UNREACH NET', 'UNREACH HOST', 'UNREACH PROTOCOL', 'UNREACH PORT', 'UNREACH NEEDFRAG', 'UNREACH SRCFAIL', 'UNREACH NET UNKNOWN', 'UNREACH HOST UNKNOWN', 'UNREACH ISOLATED', 'UNREACH NET PROHIB', 'UNREACH HOST PROHIB', 'UNREACH TOSNET', 'UNREACH TOSHOST', 'UNREACH FILTER PROHIB', 'UNREACH HOST PRECEDENCE', 'UNREACH PRECEDENCE CUTOFF', 'UNKNOWN ICMP UNREACH']} 

tmp_code[5] = ['REDIRECT NET', 'REDIRECT HOST', 'REDIRECT TOSNET', 'REDIRECT TOSHOST'] 

tmp_code[9] = ['ROUTERADVERT NORMAL', None, None, None, None, None, None, None, None, None, None, None, None, None, None, None,'ROUTERADVERT NOROUTE COMMON'] 

tmp_code[11] = ['TIMXCEED INTRANS ', 'TIMXCEED REASS'] 

tmp_code[12] = ['PARAMPROB ERRATPTR ', 'PARAMPROB OPTABSENT', 'PARAMPROB LENGTH'] 

tmp_code[40] = [None, 'PHOTURIS UNKNOWN INDEX', 'PHOTURIS AUTH FAILED', 'PHOTURIS DECRYPT FAILED'] 

if aType in tmp_code: 

tmp_list = tmp_code[aType] 

if ((aCode + 1) > len(tmp_list)) or (not tmp_list[aCode]): 

return 'UNKNOWN' 

else: 

return tmp_list[aCode] 

else: 

return 'UNKNOWN' 

 

def __str__(self): 

tmp_type = self.get_icmp_type() 

tmp_code = self.get_icmp_code() 

tmp_str = 'ICMP type: ' + self.get_type_name(tmp_type) 

tmp_str+= ' code: ' + self.get_code_name(tmp_type, tmp_code) 

if self.child(): 

tmp_str += '\n' + str( self.child() ) 

return tmp_str 

 

def isDestinationUnreachable(self): 

return self.get_icmp_type() == 3 

 

def isError(self): 

return not self.isQuery() 

 

def isHostUnreachable(self): 

return self.isDestinationUnreachable() and (self.get_icmp_code() == 1) 

 

def isNetUnreachable(self): 

return self.isDestinationUnreachable() and (self.get_icmp_code() == 0) 

 

def isPortUnreachable(self): 

return self.isDestinationUnreachable() and (self.get_icmp_code() == 3) 

 

def isProtocolUnreachable(self): 

return self.isDestinationUnreachable() and (self.get_icmp_code() == 2) 

 

def isQuery(self): 

tmp_dict = {8:'', 9:'', 10:'', 13:'', 14:'', 15:'', 16:'', 17:'', 18:''} 

return self.get_icmp_type() in tmp_dict 

 

class IGMP(Header): 

protocol = 2 

def __init__(self, aBuffer = None): 

Header.__init__(self, 8) 

if aBuffer: 

self.load_header(aBuffer) 

 

def get_igmp_type(self): 

return self.get_byte(0) 

 

def set_igmp_type(self, aValue): 

self.set_byte(0, aValue) 

 

def get_igmp_code(self): 

return self.get_byte(1) 

 

def set_igmp_code(self, aValue): 

self.set_byte(1, aValue) 

 

def get_igmp_cksum(self): 

return self.get_word(2) 

 

def set_igmp_cksum(self, aValue): 

self.set_word(2, aValue) 

 

def get_igmp_group(self): 

return self.get_long(4) 

 

def set_igmp_group(self, aValue): 

self.set_long(4, aValue) 

 

def get_header_size(self): 

return 8 

 

def get_type_name(self, aType): 

tmp_dict = {0x11:'HOST MEMBERSHIP QUERY ', 0x12:'v1 HOST MEMBERSHIP REPORT ', 0x13:'IGMP DVMRP ', 0x14:' PIM ', 0x16:'v2 HOST MEMBERSHIP REPORT ', 0x17:'HOST LEAVE MESSAGE ', 0x1e:'MTRACE REPLY ', 0X1f:'MTRACE QUERY '} 

answer = tmp_dict.get(aType, 'UNKNOWN TYPE OR VERSION ') 

return answer 

 

def calculate_checksum(self): 

if self.auto_checksum and (not self.get_igmp_cksum()): 

self.set_igmp_cksum(self.compute_checksum(self.get_bytes())) 

 

def __str__(self): 

tmp_str = 'IGMP: ' + self.get_type_name(self.get_igmp_type()) 

tmp_str += 'Group: ' + socket.inet_ntoa(struct.pack('!L',self.get_igmp_group())) 

if self.child(): 

tmp_str += '\n' + str(self.child()) 

return tmp_str 

 

 

 

class ARP(Header): 

ethertype = 0x806 

def __init__(self, aBuffer = None): 

Header.__init__(self, 7) 

2003 ↛ exitline 2003 didn't return from function '__init__', because the condition on line 2003 was never false if aBuffer: 

self.load_header(aBuffer) 

 

def get_ar_hrd(self): 

return self.get_word(0) 

 

def set_ar_hrd(self, aValue): 

self.set_word(0, aValue) 

 

def get_ar_pro(self): 

return self.get_word(2) 

 

def set_ar_pro(self, aValue): 

self.set_word(2, aValue) 

 

def get_ar_hln(self): 

return self.get_byte(4) 

 

def set_ar_hln(self, aValue): 

self.set_byte(4, aValue) 

 

def get_ar_pln(self): 

return self.get_byte(5) 

 

def set_ar_pln(self, aValue): 

self.set_byte(5, aValue) 

 

def get_ar_op(self): 

return self.get_word(6) 

 

def set_ar_op(self, aValue): 

self.set_word(6, aValue) 

 

def get_ar_sha(self): 

tmp_size = self.get_ar_hln() 

return self.get_bytes().tolist()[8: 8 + tmp_size] 

 

def set_ar_sha(self, aValue): 

for i in range(0, self.get_ar_hln()): 

self.set_byte(i + 8, aValue[i]) 

 

def get_ar_spa(self): 

tmp_size = self.get_ar_pln() 

return self.get_bytes().tolist()[8 + self.get_ar_hln(): 8 + self.get_ar_hln() + tmp_size] 

 

def set_ar_spa(self, aValue): 

for i in range(0, self.get_ar_pln()): 

self.set_byte(i + 8 + self.get_ar_hln(), aValue[i]) 

 

def get_ar_tha(self): 

tmp_size = self.get_ar_hln() 

tmp_from = 8 + self.get_ar_hln() + self.get_ar_pln() 

return self.get_bytes().tolist()[tmp_from: tmp_from + tmp_size] 

 

def set_ar_tha(self, aValue): 

tmp_from = 8 + self.get_ar_hln() + self.get_ar_pln() 

for i in range(0, self.get_ar_hln()): 

self.set_byte(i + tmp_from, aValue[i]) 

 

def get_ar_tpa(self): 

tmp_size = self.get_ar_pln() 

tmp_from = 8 + ( 2 * self.get_ar_hln()) + self.get_ar_pln() 

return self.get_bytes().tolist()[tmp_from: tmp_from + tmp_size] 

 

def set_ar_tpa(self, aValue): 

tmp_from = 8 + (2 * self.get_ar_hln()) + self.get_ar_pln() 

for i in range(0, self.get_ar_pln()): 

self.set_byte(i + tmp_from, aValue[i]) 

 

def get_header_size(self): 

return 8 + (2 * self.get_ar_hln()) + (2 * self.get_ar_pln()) 

 

def get_op_name(self, ar_op): 

tmp_dict = {1:'REQUEST', 2:'REPLY', 3:'REVREQUEST', 4:'REVREPLY', 8:'INVREQUEST', 9:'INVREPLY'} 

answer = tmp_dict.get(ar_op, 'UNKNOWN') 

return answer 

 

def get_hrd_name(self, ar_hrd): 

tmp_dict = { 1:'ARPHRD ETHER', 6:'ARPHRD IEEE802', 15:'ARPHRD FRELAY'} 

answer = tmp_dict.get(ar_hrd, 'UNKNOWN') 

return answer 

 

 

def as_hrd(self, anArray): 

if not anArray: 

return '' 

tmp_str = '%x' % anArray[0] 

for i in range(1, len(anArray)): 

tmp_str += ':%x' % anArray[i] 

return tmp_str 

 

def as_pro(self, anArray): 

if not anArray: 

return '' 

tmp_str = '%d' % anArray[0] 

for i in range(1, len(anArray)): 

tmp_str += '.%d' % anArray[i] 

return tmp_str 

 

def __str__(self): 

tmp_op = self.get_ar_op() 

tmp_str = 'ARP format: ' + self.get_hrd_name(self.get_ar_hrd()) + ' ' 

tmp_str += 'opcode: ' + self.get_op_name(tmp_op) 

tmp_str += '\n' + self.as_hrd(self.get_ar_sha()) + ' -> ' 

tmp_str += self.as_hrd(self.get_ar_tha()) 

tmp_str += '\n' + self.as_pro(self.get_ar_spa()) + ' -> ' 

tmp_str += self.as_pro(self.get_ar_tpa()) 

if self.child(): 

tmp_str += '\n' + str(self.child()) 

return tmp_str 

 

def example(): #To execute an example, remove this line 

a = Ethernet() 

b = ARP() 

c = Data('Hola loco!!!') 

b.set_ar_hln(6) 

b.set_ar_pln(4) 

#a.set_ip_dst('192.168.22.6') 

#a.set_ip_src('1.1.1.2') 

a.contains(b) 

b.contains(c) 

b.set_ar_op(2) 

b.set_ar_hrd(1) 

b.set_ar_spa((192, 168, 22, 6)) 

b.set_ar_tpa((192, 168, 66, 171)) 

a.set_ether_shost((0x0, 0xe0, 0x7d, 0x8a, 0xef, 0x3d)) 

a.set_ether_dhost((0x0, 0xc0, 0xdf, 0x6, 0x5, 0xe)) 

print("beto %s" % a)