├── .gitignore ├── AnomalyDetection ├── AnomalyError.py ├── DistributedDetection.py ├── InternalDetection.py └── __init__.py ├── CHANGELOG.md ├── Gtk ├── Gtk_DialogBox.py ├── Gtk_Export.py ├── Gtk_FwSelect.py ├── Gtk_HelpMessage.py ├── Gtk_IPSec_Tunnels.py ├── Gtk_LateralPane.py ├── Gtk_ListView.py ├── Gtk_Main.py ├── Gtk_Matrix_Table.py ├── Gtk_MenuBar.py ├── Gtk_Nat_Rule.py ├── Gtk_NetworkCanvas.py ├── Gtk_NetworkPopupMenu.py ├── Gtk_NoteBook.py ├── Gtk_ProgressBar.py ├── Gtk_QueryPath.py ├── Gtk_SearchBar.py ├── Gtk_StatusBar.py ├── Gtk_TabInterface.py ├── Gtk_TreeView.py ├── Gtk_VPNs.py └── __init__.py ├── Makefile ├── NetworkGraph ├── Edge.py ├── NetworkGraph.py ├── Node.py └── __init__.py ├── Parser ├── CheckPoint │ ├── CheckPointLex.py │ ├── CheckPointPort.py │ ├── CheckPointYacc.py │ ├── __init__.py │ ├── lexTest.py │ ├── objTest │ ├── objects.C │ ├── objects.C2 │ ├── ply │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── cpp.py │ │ ├── ctokens.py │ │ ├── lex.py │ │ ├── lex.pyc │ │ ├── yacc.py │ │ └── yacc.pyc │ ├── rules.C │ ├── yaccTest.py │ └── yaccTest2.py ├── CheckPoint_R_77 │ ├── CheckPointLex.py │ ├── CheckPointPort.py │ ├── CheckPointYacc.py │ ├── __init__.py │ ├── lexTest.py │ ├── objTest │ ├── objects.C │ ├── objects.C2 │ ├── ply │ │ ├── __init__.py │ │ ├── cpp.py │ │ ├── ctokens.py │ │ ├── lex.py │ │ └── yacc.py │ ├── rules.C │ ├── yaccTest.py │ └── yaccTest2.py ├── CiscoAsa │ ├── CiscoAsaLex.py │ ├── CiscoAsaPort.py │ ├── CiscoAsaYacc.py │ └── __init__.py ├── FortiGate.o │ ├── FortiGateLex.py │ ├── FortiGateLex.pyc │ ├── FortiGateYacc.py │ ├── FortiGateYacc.pyc │ ├── __init__.py │ └── __init__.pyc ├── FortiGate │ ├── FortiGateLex.py │ ├── FortiGateYacc.py │ └── __init__.py ├── IpTables │ ├── IpTablesLex.py │ ├── IpTablesParser.py │ ├── IpTablesYacc.py │ └── __init__.py ├── JuniperNetscreen │ ├── JuniperNetscreenLex.py │ ├── JuniperNetscreenPort.py │ ├── JuniperNetscreenYacc.py │ └── __init__.py ├── Juniper_JunOS_11 │ ├── JuniperNetscreenLex.py │ ├── JuniperNetscreenPort.py │ ├── JuniperNetscreenYacc.py │ └── __init__.py ├── MatrixFlowParser │ ├── MatrixFlowLex.py │ ├── MatrixFlowParser.py │ ├── MatrixFlowYacc.py │ └── __init__.py ├── Parser.py ├── QueryPathParser │ ├── QueryPathLex.py │ ├── QueryPathParser.py │ ├── QueryPathYacc.py │ └── __init__.py ├── Routing │ ├── RoutingParser.py │ └── __init__.py ├── __init__.py └── ply │ ├── __init__.py │ ├── cpp.py │ ├── ctokens.py │ ├── lex.py │ └── yacc.py ├── README.md ├── ROBDD ├── __init__.py ├── ite.py ├── operators.py ├── robdd.py ├── robdd_debug.py └── synthesis.py ├── SpringBase ├── ACL.py ├── Action.py ├── Firewall.py ├── IPSec_Tunnel.py ├── Interface.py ├── Ip.py ├── Nat_Rule.py ├── Nat_Rule_2.py ├── Operator.py ├── Port.py ├── Protocol.py ├── Route.py ├── Route_info.py ├── Rule.py └── __init__.py ├── Tools ├── ExcelToolKit.py ├── ReduceRule.py ├── __init__.py └── iptable_helper.py ├── __init__.py ├── documentation ├── HowTo_add_equipements.pdf ├── long_doc └── short_doc ├── input ├── template_matrix_table.xlsx └── template_rule_to_excel.xlsx ├── parser.out ├── parsetab.py ├── ressources ├── firewall.png ├── firewallred.png ├── gateway.png ├── gatewayblue.png ├── gatewaycyan.png ├── gatewaygreen.png ├── gatewayorange.png ├── gatewayred.png ├── icon.png ├── network.png ├── networkblue.png ├── networkcyan.png ├── networkgreen.png ├── networkorange.png ├── networkred.png ├── pointA.png └── pointB.png ├── springbok.py ├── springbox_cli.py └── test ├── __init__.py ├── checkpoint_parse ├── __init__.py ├── newObj.C ├── objects.C ├── parser.out ├── parsetab.py ├── save.py ├── testLex.py ├── testLex.pyc └── testYacc.py ├── cisco_parse ├── __init__.py ├── ref_rule1.txt ├── ref_rule10.txt ├── ref_rule11.txt ├── ref_rule12.txt ├── ref_rule13.txt ├── ref_rule14.txt ├── ref_rule15.txt ├── ref_rule16.txt ├── ref_rule17.txt ├── ref_rule18.txt ├── ref_rule19.txt ├── ref_rule2.txt ├── ref_rule20.txt ├── ref_rule21.txt ├── ref_rule22.txt ├── ref_rule23.txt ├── ref_rule24.txt ├── ref_rule25.txt ├── ref_rule26.txt ├── ref_rule27.txt ├── ref_rule28.txt ├── ref_rule29.txt ├── ref_rule3.txt ├── ref_rule30.txt ├── ref_rule31.txt ├── ref_rule32.txt ├── ref_rule33.txt ├── ref_rule34.txt ├── ref_rule35.txt ├── ref_rule36.txt ├── ref_rule37.txt ├── ref_rule38.txt ├── ref_rule39.txt ├── ref_rule4.txt ├── ref_rule40.txt ├── ref_rule41.txt ├── ref_rule42.txt ├── ref_rule43.txt ├── ref_rule44.txt ├── ref_rule45.txt ├── ref_rule46.txt ├── ref_rule47.txt ├── ref_rule48.txt ├── ref_rule49.txt ├── ref_rule5.txt ├── ref_rule50.txt ├── ref_rule51.txt ├── ref_rule52.txt ├── ref_rule53.txt ├── ref_rule54.txt ├── ref_rule55.txt ├── ref_rule56.txt ├── ref_rule57.txt ├── ref_rule6.txt ├── ref_rule7.txt ├── ref_rule8.txt ├── ref_rule9.txt ├── test.py ├── test_rule1.txt ├── test_rule10.txt ├── test_rule11.txt ├── test_rule12.txt ├── test_rule13.txt ├── test_rule14.txt ├── test_rule15.txt ├── test_rule16.txt ├── test_rule17.txt ├── test_rule18.txt ├── test_rule19.txt ├── test_rule2.txt ├── test_rule20.txt ├── test_rule21.txt ├── test_rule22.txt ├── test_rule23.txt ├── test_rule24.txt ├── test_rule25.txt ├── test_rule26.txt ├── test_rule27.txt ├── test_rule28.txt ├── test_rule29.txt ├── test_rule3.txt ├── test_rule30.txt ├── test_rule31.txt ├── test_rule32.txt ├── test_rule33.txt ├── test_rule34.txt ├── test_rule35.txt ├── test_rule36.txt ├── test_rule37.txt ├── test_rule38.txt ├── test_rule39.txt ├── test_rule4.txt ├── test_rule40.txt ├── test_rule41.txt ├── test_rule42.txt ├── test_rule43.txt ├── test_rule44.txt ├── test_rule45.txt ├── test_rule46.txt ├── test_rule47.txt ├── test_rule48.txt ├── test_rule49.txt ├── test_rule5.txt ├── test_rule50.txt ├── test_rule51.txt ├── test_rule52.txt ├── test_rule53.txt ├── test_rule54.txt ├── test_rule55.txt ├── test_rule56.txt ├── test_rule57.txt ├── test_rule6.txt ├── test_rule7.txt ├── test_rule8.txt └── test_rule9.txt ├── distributed_detection ├── __init__.py ├── __init__.pyc ├── ref_correlate1.txt ├── ref_correlate10.txt ├── ref_correlate101.txt ├── ref_correlate102.txt ├── ref_correlate103.txt ├── ref_correlate104.txt ├── ref_correlate105.txt ├── ref_correlate106.txt ├── ref_correlate107.txt ├── ref_correlate108.txt ├── ref_correlate109.txt ├── ref_correlate11.txt ├── ref_correlate110.txt ├── ref_correlate111.txt ├── ref_correlate112.txt ├── ref_correlate12.txt ├── ref_correlate2.txt ├── ref_correlate201.txt ├── ref_correlate202.txt ├── ref_correlate203.txt ├── ref_correlate204.txt ├── ref_correlate205.txt ├── ref_correlate206.txt ├── ref_correlate207.txt ├── ref_correlate208.txt ├── ref_correlate209.txt ├── ref_correlate210.txt ├── ref_correlate211.txt ├── ref_correlate3.txt ├── ref_correlate4.txt ├── ref_correlate5.txt ├── ref_correlate6.txt ├── ref_correlate7.txt ├── ref_correlate8.txt ├── ref_correlate9.txt ├── ref_raised1.txt ├── ref_raised101.txt ├── ref_raised102.txt ├── ref_raised103.txt ├── ref_raised104.txt ├── ref_raised105.txt ├── ref_raised2.txt ├── ref_raised201.txt ├── ref_raised202.txt ├── ref_raised3.txt ├── ref_raised4.txt ├── ref_raised5.txt ├── ref_redudant1.txt ├── ref_redudant101.txt ├── ref_redudant102.txt ├── ref_redudant103.txt ├── ref_redudant104.txt ├── ref_redudant105.txt ├── ref_redudant106.txt ├── ref_redudant107.txt ├── ref_redudant108.txt ├── ref_redudant109.txt ├── ref_redudant2.txt ├── ref_redudant3.txt ├── ref_redudant4.txt ├── ref_redudant5.txt ├── ref_redudant6.txt ├── ref_redudant7.txt ├── ref_redudant8.txt ├── ref_redudant9.txt ├── ref_shadow1.txt ├── ref_shadow101.txt ├── ref_shadow102.txt ├── ref_shadow103.txt ├── ref_shadow104.txt ├── ref_shadow105.txt ├── ref_shadow106.txt ├── ref_shadow107.txt ├── ref_shadow108.txt ├── ref_shadow109.txt ├── ref_shadow2.txt ├── ref_shadow201.txt ├── ref_shadow202.txt ├── ref_shadow203.txt ├── ref_shadow3.txt ├── ref_shadow4.txt ├── ref_shadow5.txt ├── ref_shadow6.txt ├── ref_shadow7.txt ├── ref_shadow8.txt ├── ref_shadow9.txt ├── test.py ├── test.pyc ├── test_correlate1.txt ├── test_correlate10.txt ├── test_correlate101.txt ├── test_correlate102.txt ├── test_correlate103.txt ├── test_correlate104.txt ├── test_correlate105.txt ├── test_correlate106.txt ├── test_correlate107.txt ├── test_correlate108.txt ├── test_correlate109.txt ├── test_correlate11.txt ├── test_correlate110.txt ├── test_correlate111.txt ├── test_correlate112.txt ├── test_correlate12.txt ├── test_correlate2.txt ├── test_correlate201.txt ├── test_correlate202.txt ├── test_correlate203.txt ├── test_correlate204.txt ├── test_correlate205.txt ├── test_correlate206.txt ├── test_correlate207.txt ├── test_correlate208.txt ├── test_correlate209.txt ├── test_correlate210.txt ├── test_correlate211.txt ├── test_correlate3.txt ├── test_correlate4.txt ├── test_correlate5.txt ├── test_correlate6.txt ├── test_correlate7.txt ├── test_correlate8.txt ├── test_correlate9.txt ├── test_raised1.txt ├── test_raised101.txt ├── test_raised102.txt ├── test_raised103.txt ├── test_raised104.txt ├── test_raised105.txt ├── test_raised2.txt ├── test_raised201.txt ├── test_raised202.txt ├── test_raised3.txt ├── test_raised4.txt ├── test_raised5.txt ├── test_redudant1.txt ├── test_redudant101.txt ├── test_redudant102.txt ├── test_redudant103.txt ├── test_redudant104.txt ├── test_redudant105.txt ├── test_redudant106.txt ├── test_redudant107.txt ├── test_redudant108.txt ├── test_redudant109.txt ├── test_redudant2.txt ├── test_redudant3.txt ├── test_redudant4.txt ├── test_redudant5.txt ├── test_redudant6.txt ├── test_redudant7.txt ├── test_redudant8.txt ├── test_redudant9.txt ├── test_shadow1.txt ├── test_shadow101.txt ├── test_shadow102.txt ├── test_shadow103.txt ├── test_shadow104.txt ├── test_shadow105.txt ├── test_shadow106.txt ├── test_shadow107.txt ├── test_shadow108.txt ├── test_shadow109.txt ├── test_shadow2.txt ├── test_shadow201.txt ├── test_shadow202.txt ├── test_shadow203.txt ├── test_shadow3.txt ├── test_shadow4.txt ├── test_shadow5.txt ├── test_shadow6.txt ├── test_shadow7.txt ├── test_shadow8.txt └── test_shadow9.txt ├── fortinet_parse ├── __init__.py ├── ref_rule1.txt ├── ref_rule10.txt ├── ref_rule100.txt ├── ref_rule101.txt ├── ref_rule102.txt ├── ref_rule103.txt ├── ref_rule104.txt ├── ref_rule105.txt ├── ref_rule106.txt ├── ref_rule107.txt ├── ref_rule108.txt ├── ref_rule109.txt ├── ref_rule11.txt ├── ref_rule110.txt ├── ref_rule111.txt ├── ref_rule112.txt ├── ref_rule113.txt ├── ref_rule114.txt ├── ref_rule115.txt ├── ref_rule116.txt ├── ref_rule117.txt ├── ref_rule118.txt ├── ref_rule119.txt ├── ref_rule12.txt ├── ref_rule120.txt ├── ref_rule121.txt ├── ref_rule122.txt ├── ref_rule123.txt ├── ref_rule124.txt ├── ref_rule125.txt ├── ref_rule126.txt ├── ref_rule127.txt ├── ref_rule128.txt ├── ref_rule129.txt ├── ref_rule13.txt ├── ref_rule130.txt ├── ref_rule131.txt ├── ref_rule132.txt ├── ref_rule133.txt ├── ref_rule134.txt ├── ref_rule135.txt ├── ref_rule136.txt ├── ref_rule137.txt ├── ref_rule138.txt ├── ref_rule139.txt ├── ref_rule14.txt ├── ref_rule140.txt ├── ref_rule141.txt ├── ref_rule142.txt ├── ref_rule143.txt ├── ref_rule144.txt ├── ref_rule145.txt ├── ref_rule146.txt ├── ref_rule147.txt ├── ref_rule148.txt ├── ref_rule149.txt ├── ref_rule15.txt ├── ref_rule150.txt ├── ref_rule151.txt ├── ref_rule152.txt ├── ref_rule153.txt ├── ref_rule154.txt ├── ref_rule155.txt ├── ref_rule156.txt ├── ref_rule157.txt ├── ref_rule158.txt ├── ref_rule159.txt ├── ref_rule16.txt ├── ref_rule160.txt ├── ref_rule161.txt ├── ref_rule162.txt ├── ref_rule163.txt ├── ref_rule164.txt ├── ref_rule165.txt ├── ref_rule166.txt ├── ref_rule167.txt ├── ref_rule168.txt ├── ref_rule169.txt ├── ref_rule17.txt ├── ref_rule170.txt ├── ref_rule171.txt ├── ref_rule172.txt ├── ref_rule173.txt ├── ref_rule174.txt ├── ref_rule175.txt ├── ref_rule176.txt ├── ref_rule177.txt ├── ref_rule178.txt ├── ref_rule179.txt ├── ref_rule18.txt ├── ref_rule180.txt ├── ref_rule181.txt ├── ref_rule182.txt ├── ref_rule183.txt ├── ref_rule184.txt ├── ref_rule185.txt ├── ref_rule19.txt ├── ref_rule2.txt ├── ref_rule20.txt ├── ref_rule21.txt ├── ref_rule22.txt ├── ref_rule23.txt ├── ref_rule24.txt ├── ref_rule25.txt ├── ref_rule26.txt ├── ref_rule27.txt ├── ref_rule28.txt ├── ref_rule29.txt ├── ref_rule3.txt ├── ref_rule30.txt ├── ref_rule31.txt ├── ref_rule32.txt ├── ref_rule33.txt ├── ref_rule34.txt ├── ref_rule35.txt ├── ref_rule36.txt ├── ref_rule37.txt ├── ref_rule38.txt ├── ref_rule39.txt ├── ref_rule4.txt ├── ref_rule40.txt ├── ref_rule41.txt ├── ref_rule42.txt ├── ref_rule43.txt ├── ref_rule44.txt ├── ref_rule45.txt ├── ref_rule46.txt ├── ref_rule47.txt ├── ref_rule48.txt ├── ref_rule49.txt ├── ref_rule5.txt ├── ref_rule50.txt ├── ref_rule51.txt ├── ref_rule52.txt ├── ref_rule53.txt ├── ref_rule54.txt ├── ref_rule55.txt ├── ref_rule56.txt ├── ref_rule57.txt ├── ref_rule58.txt ├── ref_rule59.txt ├── ref_rule6.txt ├── ref_rule60.txt ├── ref_rule61.txt ├── ref_rule62.txt ├── ref_rule63.txt ├── ref_rule64.txt ├── ref_rule65.txt ├── ref_rule66.txt ├── ref_rule67.txt ├── ref_rule68.txt ├── ref_rule69.txt ├── ref_rule7.txt ├── ref_rule70.txt ├── ref_rule71.txt ├── ref_rule72.txt ├── ref_rule73.txt ├── ref_rule74.txt ├── ref_rule75.txt ├── ref_rule76.txt ├── ref_rule77.txt ├── ref_rule78.txt ├── ref_rule79.txt ├── ref_rule8.txt ├── ref_rule80.txt ├── ref_rule81.txt ├── ref_rule82.txt ├── ref_rule83.txt ├── ref_rule84.txt ├── ref_rule85.txt ├── ref_rule86.txt ├── ref_rule87.txt ├── ref_rule88.txt ├── ref_rule89.txt ├── ref_rule9.txt ├── ref_rule90.txt ├── ref_rule91.txt ├── ref_rule92.txt ├── ref_rule93.txt ├── ref_rule94.txt ├── ref_rule95.txt ├── ref_rule96.txt ├── ref_rule97.txt ├── ref_rule98.txt ├── ref_rule99.txt ├── test.py ├── test_rule1.txt ├── test_rule10.txt ├── test_rule100.txt ├── test_rule101.txt ├── test_rule102.txt ├── test_rule103.txt ├── test_rule104.txt ├── test_rule105.txt ├── test_rule106.txt ├── test_rule107.txt ├── test_rule108.txt ├── test_rule109.txt ├── test_rule11.txt ├── test_rule110.txt ├── test_rule111.txt ├── test_rule112.txt ├── test_rule113.txt ├── test_rule114.txt ├── test_rule115.txt ├── test_rule116.txt ├── test_rule117.txt ├── test_rule118.txt ├── test_rule119.txt ├── test_rule12.txt ├── test_rule120.txt ├── test_rule121.txt ├── test_rule122.txt ├── test_rule123.txt ├── test_rule124.txt ├── test_rule125.txt ├── test_rule126.txt ├── test_rule127.txt ├── test_rule128.txt ├── test_rule129.txt ├── test_rule13.txt ├── test_rule130.txt ├── test_rule131.txt ├── test_rule132.txt ├── test_rule133.txt ├── test_rule134.txt ├── test_rule135.txt ├── test_rule136.txt ├── test_rule137.txt ├── test_rule138.txt ├── test_rule139.txt ├── test_rule14.txt ├── test_rule140.txt ├── test_rule141.txt ├── test_rule142.txt ├── test_rule143.txt ├── test_rule144.txt ├── test_rule145.txt ├── test_rule146.txt ├── test_rule147.txt ├── test_rule148.txt ├── test_rule149.txt ├── test_rule15.txt ├── test_rule150.txt ├── test_rule151.txt ├── test_rule152.txt ├── test_rule153.txt ├── test_rule154.txt ├── test_rule155.txt ├── test_rule156.txt ├── test_rule157.txt ├── test_rule158.txt ├── test_rule159.txt ├── test_rule16.txt ├── test_rule160.txt ├── test_rule161.txt ├── test_rule162.txt ├── test_rule163.txt ├── test_rule164.txt ├── test_rule165.txt ├── test_rule166.txt ├── test_rule167.txt ├── test_rule168.txt ├── test_rule169.txt ├── test_rule17.txt ├── test_rule170.txt ├── test_rule171.txt ├── test_rule172.txt ├── test_rule173.txt ├── test_rule174.txt ├── test_rule175.txt ├── test_rule176.txt ├── test_rule177.txt ├── test_rule178.txt ├── test_rule179.txt ├── test_rule18.txt ├── test_rule180.txt ├── test_rule181.txt ├── test_rule182.txt ├── test_rule183.txt ├── test_rule184.txt ├── test_rule185.txt ├── test_rule19.txt ├── test_rule2.txt ├── test_rule20.txt ├── test_rule21.txt ├── test_rule22.txt ├── test_rule23.txt ├── test_rule24.txt ├── test_rule25.txt ├── test_rule26.txt ├── test_rule27.txt ├── test_rule28.txt ├── test_rule29.txt ├── test_rule3.txt ├── test_rule30.txt ├── test_rule31.txt ├── test_rule32.txt ├── test_rule33.txt ├── test_rule34.txt ├── test_rule35.txt ├── test_rule36.txt ├── test_rule37.txt ├── test_rule38.txt ├── test_rule39.txt ├── test_rule4.txt ├── test_rule40.txt ├── test_rule41.txt ├── test_rule42.txt ├── test_rule43.txt ├── test_rule44.txt ├── test_rule45.txt ├── test_rule46.txt ├── test_rule47.txt ├── test_rule48.txt ├── test_rule49.txt ├── test_rule5.txt ├── test_rule50.txt ├── test_rule51.txt ├── test_rule52.txt ├── test_rule53.txt ├── test_rule54.txt ├── test_rule55.txt ├── test_rule56.txt ├── test_rule57.txt ├── test_rule58.txt ├── test_rule59.txt ├── test_rule6.txt ├── test_rule60.txt ├── test_rule61.txt ├── test_rule62.txt ├── test_rule63.txt ├── test_rule64.txt ├── test_rule65.txt ├── test_rule66.txt ├── test_rule67.txt ├── test_rule68.txt ├── test_rule69.txt ├── test_rule7.txt ├── test_rule70.txt ├── test_rule71.txt ├── test_rule72.txt ├── test_rule73.txt ├── test_rule74.txt ├── test_rule75.txt ├── test_rule76.txt ├── test_rule77.txt ├── test_rule78.txt ├── test_rule79.txt ├── test_rule8.txt ├── test_rule80.txt ├── test_rule81.txt ├── test_rule82.txt ├── test_rule83.txt ├── test_rule84.txt ├── test_rule85.txt ├── test_rule86.txt ├── test_rule87.txt ├── test_rule88.txt ├── test_rule89.txt ├── test_rule9.txt ├── test_rule90.txt ├── test_rule91.txt ├── test_rule92.txt ├── test_rule93.txt ├── test_rule94.txt ├── test_rule95.txt ├── test_rule96.txt ├── test_rule97.txt ├── test_rule98.txt └── test_rule99.txt ├── internal_detection ├── __init__.py ├── ref_correlate1.txt ├── ref_correlate10.txt ├── ref_correlate101.txt ├── ref_correlate102.txt ├── ref_correlate103.txt ├── ref_correlate104.txt ├── ref_correlate105.txt ├── ref_correlate106.txt ├── ref_correlate107.txt ├── ref_correlate108.txt ├── ref_correlate109.txt ├── ref_correlate11.txt ├── ref_correlate110.txt ├── ref_correlate111.txt ├── ref_correlate112.txt ├── ref_correlate113.txt ├── ref_correlate114.txt ├── ref_correlate115.txt ├── ref_correlate116.txt ├── ref_correlate117.txt ├── ref_correlate118.txt ├── ref_correlate119.txt ├── ref_correlate12.txt ├── ref_correlate120.txt ├── ref_correlate13.txt ├── ref_correlate14.txt ├── ref_correlate15.txt ├── ref_correlate16.txt ├── ref_correlate17.txt ├── ref_correlate18.txt ├── ref_correlate19.txt ├── ref_correlate2.txt ├── ref_correlate20.txt ├── ref_correlate3.txt ├── ref_correlate301.txt ├── ref_correlate302.txt ├── ref_correlate303.txt ├── ref_correlate4.txt ├── ref_correlate5.txt ├── ref_correlate6.txt ├── ref_correlate7.txt ├── ref_correlate8.txt ├── ref_correlate9.txt ├── ref_redudant1.txt ├── ref_redudant10.txt ├── ref_redudant101.txt ├── ref_redudant102.txt ├── ref_redudant103.txt ├── ref_redudant104.txt ├── ref_redudant105.txt ├── ref_redudant106.txt ├── ref_redudant107.txt ├── ref_redudant108.txt ├── ref_redudant109.txt ├── ref_redudant11.txt ├── ref_redudant110.txt ├── ref_redudant111.txt ├── ref_redudant112.txt ├── ref_redudant113.txt ├── ref_redudant114.txt ├── ref_redudant115.txt ├── ref_redudant116.txt ├── ref_redudant117.txt ├── ref_redudant118.txt ├── ref_redudant119.txt ├── ref_redudant12.txt ├── ref_redudant120.txt ├── ref_redudant13.txt ├── ref_redudant14.txt ├── ref_redudant15.txt ├── ref_redudant16.txt ├── ref_redudant17.txt ├── ref_redudant18.txt ├── ref_redudant19.txt ├── ref_redudant2.txt ├── ref_redudant20.txt ├── ref_redudant3.txt ├── ref_redudant301.txt ├── ref_redudant302.txt ├── ref_redudant303.txt ├── ref_redudant4.txt ├── ref_redudant5.txt ├── ref_redudant6.txt ├── ref_redudant7.txt ├── ref_redudant8.txt ├── ref_redudant9.txt ├── ref_shadow1.txt ├── ref_shadow10.txt ├── ref_shadow101.txt ├── ref_shadow102.txt ├── ref_shadow103.txt ├── ref_shadow104.txt ├── ref_shadow105.txt ├── ref_shadow106.txt ├── ref_shadow107.txt ├── ref_shadow108.txt ├── ref_shadow109.txt ├── ref_shadow11.txt ├── ref_shadow110.txt ├── ref_shadow111.txt ├── ref_shadow112.txt ├── ref_shadow113.txt ├── ref_shadow114.txt ├── ref_shadow115.txt ├── ref_shadow116.txt ├── ref_shadow117.txt ├── ref_shadow118.txt ├── ref_shadow119.txt ├── ref_shadow12.txt ├── ref_shadow120.txt ├── ref_shadow13.txt ├── ref_shadow14.txt ├── ref_shadow15.txt ├── ref_shadow16.txt ├── ref_shadow17.txt ├── ref_shadow18.txt ├── ref_shadow19.txt ├── ref_shadow2.txt ├── ref_shadow20.txt ├── ref_shadow3.txt ├── ref_shadow301.txt ├── ref_shadow302.txt ├── ref_shadow303.txt ├── ref_shadow4.txt ├── ref_shadow5.txt ├── ref_shadow6.txt ├── ref_shadow7.txt ├── ref_shadow8.txt ├── ref_shadow9.txt ├── test.py ├── test_correlate1.txt ├── test_correlate10.txt ├── test_correlate101.txt ├── test_correlate102.txt ├── test_correlate103.txt ├── test_correlate104.txt ├── test_correlate105.txt ├── test_correlate106.txt ├── test_correlate107.txt ├── test_correlate108.txt ├── test_correlate109.txt ├── test_correlate11.txt ├── test_correlate110.txt ├── test_correlate111.txt ├── test_correlate112.txt ├── test_correlate113.txt ├── test_correlate114.txt ├── test_correlate115.txt ├── test_correlate116.txt ├── test_correlate117.txt ├── test_correlate118.txt ├── test_correlate119.txt ├── test_correlate12.txt ├── test_correlate120.txt ├── test_correlate13.txt ├── test_correlate14.txt ├── test_correlate15.txt ├── test_correlate16.txt ├── test_correlate17.txt ├── test_correlate18.txt ├── test_correlate19.txt ├── test_correlate2.txt ├── test_correlate20.txt ├── test_correlate3.txt ├── test_correlate301.txt ├── test_correlate302.txt ├── test_correlate303.txt ├── test_correlate4.txt ├── test_correlate5.txt ├── test_correlate6.txt ├── test_correlate7.txt ├── test_correlate8.txt ├── test_correlate9.txt ├── test_redudant1.txt ├── test_redudant10.txt ├── test_redudant101.txt ├── test_redudant102.txt ├── test_redudant103.txt ├── test_redudant104.txt ├── test_redudant105.txt ├── test_redudant106.txt ├── test_redudant107.txt ├── test_redudant108.txt ├── test_redudant109.txt ├── test_redudant11.txt ├── test_redudant110.txt ├── test_redudant111.txt ├── test_redudant112.txt ├── test_redudant113.txt ├── test_redudant114.txt ├── test_redudant115.txt ├── test_redudant116.txt ├── test_redudant117.txt ├── test_redudant118.txt ├── test_redudant119.txt ├── test_redudant12.txt ├── test_redudant120.txt ├── test_redudant13.txt ├── test_redudant14.txt ├── test_redudant15.txt ├── test_redudant16.txt ├── test_redudant17.txt ├── test_redudant18.txt ├── test_redudant19.txt ├── test_redudant2.txt ├── test_redudant20.txt ├── test_redudant3.txt ├── test_redudant301.txt ├── test_redudant303.txt ├── test_redudant4.txt ├── test_redudant5.txt ├── test_redudant6.txt ├── test_redudant7.txt ├── test_redudant8.txt ├── test_redudant9.txt ├── test_shadow1.txt ├── test_shadow10.txt ├── test_shadow101.txt ├── test_shadow102.txt ├── test_shadow103.txt ├── test_shadow104.txt ├── test_shadow105.txt ├── test_shadow106.txt ├── test_shadow107.txt ├── test_shadow108.txt ├── test_shadow109.txt ├── test_shadow11.txt ├── test_shadow110.txt ├── test_shadow111.txt ├── test_shadow112.txt ├── test_shadow113.txt ├── test_shadow114.txt ├── test_shadow115.txt ├── test_shadow116.txt ├── test_shadow117.txt ├── test_shadow118.txt ├── test_shadow119.txt ├── test_shadow12.txt ├── test_shadow120.txt ├── test_shadow13.txt ├── test_shadow14.txt ├── test_shadow15.txt ├── test_shadow16.txt ├── test_shadow17.txt ├── test_shadow18.txt ├── test_shadow19.txt ├── test_shadow2.txt ├── test_shadow20.txt ├── test_shadow3.txt ├── test_shadow301.txt ├── test_shadow302.txt ├── test_shadow303.txt ├── test_shadow4.txt ├── test_shadow5.txt ├── test_shadow6.txt ├── test_shadow7.txt ├── test_shadow8.txt └── test_shadow9.txt ├── iptables_parse ├── __init__.py ├── ref_rule1.txt ├── ref_rule10.txt ├── ref_rule11.txt ├── ref_rule12.txt ├── ref_rule13.txt ├── ref_rule14.txt ├── ref_rule15.txt ├── ref_rule16.txt ├── ref_rule17.txt ├── ref_rule18.txt ├── ref_rule19.txt ├── ref_rule2.txt ├── ref_rule20.txt ├── ref_rule21.txt ├── ref_rule22.txt ├── ref_rule23.txt ├── ref_rule24.txt ├── ref_rule25.txt ├── ref_rule26.txt ├── ref_rule27.txt ├── ref_rule3.txt ├── ref_rule4.txt ├── ref_rule5.txt ├── ref_rule6.txt ├── ref_rule7.txt ├── ref_rule8.txt ├── ref_rule9.txt ├── test.py ├── test_rule1.txt ├── test_rule10.txt ├── test_rule11.txt ├── test_rule12.txt ├── test_rule13.txt ├── test_rule14.txt ├── test_rule15.txt ├── test_rule16.txt ├── test_rule17.txt ├── test_rule18.txt ├── test_rule19.txt ├── test_rule2.txt ├── test_rule20.txt ├── test_rule21.txt ├── test_rule22.txt ├── test_rule23.txt ├── test_rule24.txt ├── test_rule25.txt ├── test_rule26.txt ├── test_rule27.txt ├── test_rule3.txt ├── test_rule4.txt ├── test_rule5.txt ├── test_rule6.txt ├── test_rule7.txt ├── test_rule8.txt └── test_rule9.txt ├── juniper_parse ├── __init__.py ├── ref_rule1.txt ├── ref_rule10.txt ├── ref_rule100.txt ├── ref_rule101.txt ├── ref_rule102.txt ├── ref_rule103.txt ├── ref_rule104.txt ├── ref_rule105.txt ├── ref_rule106.txt ├── ref_rule107.txt ├── ref_rule108.txt ├── ref_rule109.txt ├── ref_rule11.txt ├── ref_rule110.txt ├── ref_rule111.txt ├── ref_rule112.txt ├── ref_rule113.txt ├── ref_rule114.txt ├── ref_rule115.txt ├── ref_rule116.txt ├── ref_rule117.txt ├── ref_rule118.txt ├── ref_rule119.txt ├── ref_rule12.txt ├── ref_rule120.txt ├── ref_rule121.txt ├── ref_rule122.txt ├── ref_rule123.txt ├── ref_rule124.txt ├── ref_rule125.txt ├── ref_rule126.txt ├── ref_rule127.txt ├── ref_rule128.txt ├── ref_rule129.txt ├── ref_rule13.txt ├── ref_rule14.txt ├── ref_rule15.txt ├── ref_rule16.txt ├── ref_rule17.txt ├── ref_rule18.txt ├── ref_rule19.txt ├── ref_rule2.txt ├── ref_rule20.txt ├── ref_rule21.txt ├── ref_rule22.txt ├── ref_rule23.txt ├── ref_rule24.txt ├── ref_rule25.txt ├── ref_rule26.txt ├── ref_rule27.txt ├── ref_rule28.txt ├── ref_rule29.txt ├── ref_rule3.txt ├── ref_rule30.txt ├── ref_rule31.txt ├── ref_rule32.txt ├── ref_rule33.txt ├── ref_rule34.txt ├── ref_rule35.txt ├── ref_rule36.txt ├── ref_rule37.txt ├── ref_rule38.txt ├── ref_rule39.txt ├── ref_rule4.txt ├── ref_rule40.txt ├── ref_rule41.txt ├── ref_rule42.txt ├── ref_rule43.txt ├── ref_rule44.txt ├── ref_rule45.txt ├── ref_rule46.txt ├── ref_rule47.txt ├── ref_rule48.txt ├── ref_rule49.txt ├── ref_rule5.txt ├── ref_rule50.txt ├── ref_rule51.txt ├── ref_rule52.txt ├── ref_rule53.txt ├── ref_rule54.txt ├── ref_rule55.txt ├── ref_rule56.txt ├── ref_rule57.txt ├── ref_rule58.txt ├── ref_rule59.txt ├── ref_rule6.txt ├── ref_rule60.txt ├── ref_rule61.txt ├── ref_rule62.txt ├── ref_rule63.txt ├── ref_rule64.txt ├── ref_rule65.txt ├── ref_rule66.txt ├── ref_rule67.txt ├── ref_rule68.txt ├── ref_rule69.txt ├── ref_rule7.txt ├── ref_rule70.txt ├── ref_rule71.txt ├── ref_rule72.txt ├── ref_rule73.txt ├── ref_rule74.txt ├── ref_rule75.txt ├── ref_rule76.txt ├── ref_rule77.txt ├── ref_rule78.txt ├── ref_rule79.txt ├── ref_rule8.txt ├── ref_rule80.txt ├── ref_rule81.txt ├── ref_rule82.txt ├── ref_rule83.txt ├── ref_rule84.txt ├── ref_rule85.txt ├── ref_rule86.txt ├── ref_rule87.txt ├── ref_rule88.txt ├── ref_rule89.txt ├── ref_rule9.txt ├── ref_rule90.txt ├── ref_rule91.txt ├── ref_rule92.txt ├── ref_rule93.txt ├── ref_rule94.txt ├── ref_rule95.txt ├── ref_rule96.txt ├── ref_rule97.txt ├── ref_rule98.txt ├── ref_rule99.txt ├── test.py ├── test_rule1.txt ├── test_rule10.txt ├── test_rule100.txt ├── test_rule101.txt ├── test_rule102.txt ├── test_rule103.txt ├── test_rule104.txt ├── test_rule105.txt ├── test_rule106.txt ├── test_rule107.txt ├── test_rule108.txt ├── test_rule109.txt ├── test_rule11.txt ├── test_rule110.txt ├── test_rule111.txt ├── test_rule112.txt ├── test_rule113.txt ├── test_rule114.txt ├── test_rule115.txt ├── test_rule116.txt ├── test_rule117.txt ├── test_rule118.txt ├── test_rule119.txt ├── test_rule12.txt ├── test_rule120.txt ├── test_rule121.txt ├── test_rule122.txt ├── test_rule123.txt ├── test_rule124.txt ├── test_rule125.txt ├── test_rule126.txt ├── test_rule127.txt ├── test_rule128.txt ├── test_rule129.txt ├── test_rule13.txt ├── test_rule14.txt ├── test_rule15.txt ├── test_rule16.txt ├── test_rule17.txt ├── test_rule18.txt ├── test_rule19.txt ├── test_rule2.txt ├── test_rule20.txt ├── test_rule21.txt ├── test_rule22.txt ├── test_rule23.txt ├── test_rule24.txt ├── test_rule25.txt ├── test_rule26.txt ├── test_rule27.txt ├── test_rule28.txt ├── test_rule29.txt ├── test_rule3.txt ├── test_rule30.txt ├── test_rule31.txt ├── test_rule32.txt ├── test_rule33.txt ├── test_rule34.txt ├── test_rule35.txt ├── test_rule36.txt ├── test_rule37.txt ├── test_rule38.txt ├── test_rule39.txt ├── test_rule4.txt ├── test_rule40.txt ├── test_rule41.txt ├── test_rule42.txt ├── test_rule43.txt ├── test_rule44.txt ├── test_rule45.txt ├── test_rule46.txt ├── test_rule47.txt ├── test_rule48.txt ├── test_rule49.txt ├── test_rule5.txt ├── test_rule50.txt ├── test_rule51.txt ├── test_rule52.txt ├── test_rule53.txt ├── test_rule54.txt ├── test_rule55.txt ├── test_rule56.txt ├── test_rule57.txt ├── test_rule58.txt ├── test_rule59.txt ├── test_rule6.txt ├── test_rule60.txt ├── test_rule61.txt ├── test_rule62.txt ├── test_rule63.txt ├── test_rule64.txt ├── test_rule65.txt ├── test_rule66.txt ├── test_rule67.txt ├── test_rule68.txt ├── test_rule69.txt ├── test_rule7.txt ├── test_rule70.txt ├── test_rule71.txt ├── test_rule72.txt ├── test_rule73.txt ├── test_rule74.txt ├── test_rule75.txt ├── test_rule76.txt ├── test_rule77.txt ├── test_rule78.txt ├── test_rule79.txt ├── test_rule8.txt ├── test_rule80.txt ├── test_rule81.txt ├── test_rule82.txt ├── test_rule83.txt ├── test_rule84.txt ├── test_rule85.txt ├── test_rule86.txt ├── test_rule87.txt ├── test_rule88.txt ├── test_rule89.txt ├── test_rule9.txt ├── test_rule90.txt ├── test_rule91.txt ├── test_rule92.txt ├── test_rule93.txt ├── test_rule94.txt ├── test_rule95.txt ├── test_rule96.txt ├── test_rule97.txt ├── test_rule98.txt └── test_rule99.txt ├── parser.out ├── parsetab.py └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | output/* 3 | 4 | -------------------------------------------------------------------------------- /AnomalyDetection/AnomalyError.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/AnomalyDetection/AnomalyError.py -------------------------------------------------------------------------------- /AnomalyDetection/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gtk/Gtk_DialogBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_DialogBox.py -------------------------------------------------------------------------------- /Gtk/Gtk_Export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_Export.py -------------------------------------------------------------------------------- /Gtk/Gtk_FwSelect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_FwSelect.py -------------------------------------------------------------------------------- /Gtk/Gtk_HelpMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_HelpMessage.py -------------------------------------------------------------------------------- /Gtk/Gtk_IPSec_Tunnels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_IPSec_Tunnels.py -------------------------------------------------------------------------------- /Gtk/Gtk_LateralPane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_LateralPane.py -------------------------------------------------------------------------------- /Gtk/Gtk_ListView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_ListView.py -------------------------------------------------------------------------------- /Gtk/Gtk_Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_Main.py -------------------------------------------------------------------------------- /Gtk/Gtk_Matrix_Table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_Matrix_Table.py -------------------------------------------------------------------------------- /Gtk/Gtk_MenuBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_MenuBar.py -------------------------------------------------------------------------------- /Gtk/Gtk_Nat_Rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_Nat_Rule.py -------------------------------------------------------------------------------- /Gtk/Gtk_NetworkCanvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_NetworkCanvas.py -------------------------------------------------------------------------------- /Gtk/Gtk_NetworkPopupMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_NetworkPopupMenu.py -------------------------------------------------------------------------------- /Gtk/Gtk_NoteBook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_NoteBook.py -------------------------------------------------------------------------------- /Gtk/Gtk_ProgressBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_ProgressBar.py -------------------------------------------------------------------------------- /Gtk/Gtk_QueryPath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_QueryPath.py -------------------------------------------------------------------------------- /Gtk/Gtk_SearchBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_SearchBar.py -------------------------------------------------------------------------------- /Gtk/Gtk_StatusBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_StatusBar.py -------------------------------------------------------------------------------- /Gtk/Gtk_TabInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_TabInterface.py -------------------------------------------------------------------------------- /Gtk/Gtk_TreeView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_TreeView.py -------------------------------------------------------------------------------- /Gtk/Gtk_VPNs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Gtk/Gtk_VPNs.py -------------------------------------------------------------------------------- /Gtk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Makefile -------------------------------------------------------------------------------- /NetworkGraph/Edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/NetworkGraph/Edge.py -------------------------------------------------------------------------------- /NetworkGraph/NetworkGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/NetworkGraph/NetworkGraph.py -------------------------------------------------------------------------------- /NetworkGraph/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/NetworkGraph/Node.py -------------------------------------------------------------------------------- /NetworkGraph/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Parser/CheckPoint/CheckPointLex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/CheckPointLex.py -------------------------------------------------------------------------------- /Parser/CheckPoint/CheckPointPort.py: -------------------------------------------------------------------------------- 1 | __author__ = 'maurice' 2 | -------------------------------------------------------------------------------- /Parser/CheckPoint/CheckPointYacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/CheckPointYacc.py -------------------------------------------------------------------------------- /Parser/CheckPoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/__init__.py -------------------------------------------------------------------------------- /Parser/CheckPoint/lexTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/lexTest.py -------------------------------------------------------------------------------- /Parser/CheckPoint/objTest: -------------------------------------------------------------------------------- 1 | : (mailomg1 2 | :ipaddr (192.168.20.8) 3 | :type (host) 4 | -------------------------------------------------------------------------------- /Parser/CheckPoint/objects.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/objects.C -------------------------------------------------------------------------------- /Parser/CheckPoint/objects.C2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/objects.C2 -------------------------------------------------------------------------------- /Parser/CheckPoint/ply/__init__.py: -------------------------------------------------------------------------------- 1 | # PLY package 2 | # Author: David Beazley (dave@dabeaz.com) 3 | 4 | __all__ = ['lex','yacc'] 5 | -------------------------------------------------------------------------------- /Parser/CheckPoint/ply/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/ply/__init__.pyc -------------------------------------------------------------------------------- /Parser/CheckPoint/ply/cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/ply/cpp.py -------------------------------------------------------------------------------- /Parser/CheckPoint/ply/ctokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/ply/ctokens.py -------------------------------------------------------------------------------- /Parser/CheckPoint/ply/lex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/ply/lex.py -------------------------------------------------------------------------------- /Parser/CheckPoint/ply/lex.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/ply/lex.pyc -------------------------------------------------------------------------------- /Parser/CheckPoint/ply/yacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/ply/yacc.py -------------------------------------------------------------------------------- /Parser/CheckPoint/ply/yacc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/ply/yacc.pyc -------------------------------------------------------------------------------- /Parser/CheckPoint/rules.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/rules.C -------------------------------------------------------------------------------- /Parser/CheckPoint/yaccTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/yaccTest.py -------------------------------------------------------------------------------- /Parser/CheckPoint/yaccTest2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint/yaccTest2.py -------------------------------------------------------------------------------- /Parser/CheckPoint_R_77/CheckPointPort.py: -------------------------------------------------------------------------------- 1 | __author__ = 'maurice' 2 | -------------------------------------------------------------------------------- /Parser/CheckPoint_R_77/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint_R_77/__init__.py -------------------------------------------------------------------------------- /Parser/CheckPoint_R_77/lexTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint_R_77/lexTest.py -------------------------------------------------------------------------------- /Parser/CheckPoint_R_77/objTest: -------------------------------------------------------------------------------- 1 | : (mailomg1 2 | :ipaddr (192.168.20.8) 3 | :type (host) 4 | -------------------------------------------------------------------------------- /Parser/CheckPoint_R_77/objects.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint_R_77/objects.C -------------------------------------------------------------------------------- /Parser/CheckPoint_R_77/objects.C2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint_R_77/objects.C2 -------------------------------------------------------------------------------- /Parser/CheckPoint_R_77/ply/__init__.py: -------------------------------------------------------------------------------- 1 | # PLY package 2 | # Author: David Beazley (dave@dabeaz.com) 3 | 4 | __all__ = ['lex','yacc'] 5 | -------------------------------------------------------------------------------- /Parser/CheckPoint_R_77/ply/cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint_R_77/ply/cpp.py -------------------------------------------------------------------------------- /Parser/CheckPoint_R_77/ply/lex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint_R_77/ply/lex.py -------------------------------------------------------------------------------- /Parser/CheckPoint_R_77/ply/yacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint_R_77/ply/yacc.py -------------------------------------------------------------------------------- /Parser/CheckPoint_R_77/rules.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint_R_77/rules.C -------------------------------------------------------------------------------- /Parser/CheckPoint_R_77/yaccTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint_R_77/yaccTest.py -------------------------------------------------------------------------------- /Parser/CheckPoint_R_77/yaccTest2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CheckPoint_R_77/yaccTest2.py -------------------------------------------------------------------------------- /Parser/CiscoAsa/CiscoAsaLex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CiscoAsa/CiscoAsaLex.py -------------------------------------------------------------------------------- /Parser/CiscoAsa/CiscoAsaPort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CiscoAsa/CiscoAsaPort.py -------------------------------------------------------------------------------- /Parser/CiscoAsa/CiscoAsaYacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CiscoAsa/CiscoAsaYacc.py -------------------------------------------------------------------------------- /Parser/CiscoAsa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/CiscoAsa/__init__.py -------------------------------------------------------------------------------- /Parser/FortiGate.o/FortiGateLex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/FortiGate.o/FortiGateLex.py -------------------------------------------------------------------------------- /Parser/FortiGate.o/FortiGateLex.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/FortiGate.o/FortiGateLex.pyc -------------------------------------------------------------------------------- /Parser/FortiGate.o/FortiGateYacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/FortiGate.o/FortiGateYacc.py -------------------------------------------------------------------------------- /Parser/FortiGate.o/FortiGateYacc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/FortiGate.o/FortiGateYacc.pyc -------------------------------------------------------------------------------- /Parser/FortiGate.o/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/FortiGate.o/__init__.py -------------------------------------------------------------------------------- /Parser/FortiGate.o/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/FortiGate.o/__init__.pyc -------------------------------------------------------------------------------- /Parser/FortiGate/FortiGateLex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/FortiGate/FortiGateLex.py -------------------------------------------------------------------------------- /Parser/FortiGate/FortiGateYacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/FortiGate/FortiGateYacc.py -------------------------------------------------------------------------------- /Parser/FortiGate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/FortiGate/__init__.py -------------------------------------------------------------------------------- /Parser/IpTables/IpTablesLex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/IpTables/IpTablesLex.py -------------------------------------------------------------------------------- /Parser/IpTables/IpTablesParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/IpTables/IpTablesParser.py -------------------------------------------------------------------------------- /Parser/IpTables/IpTablesYacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/IpTables/IpTablesYacc.py -------------------------------------------------------------------------------- /Parser/IpTables/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Parser/JuniperNetscreen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Parser/Juniper_JunOS_11/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Parser/MatrixFlowParser/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Parser/Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/Parser.py -------------------------------------------------------------------------------- /Parser/QueryPathParser/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Parser/Routing/RoutingParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/Routing/RoutingParser.py -------------------------------------------------------------------------------- /Parser/Routing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Parser/ply/__init__.py: -------------------------------------------------------------------------------- 1 | # PLY package 2 | # Author: David Beazley (dave@dabeaz.com) 3 | 4 | __all__ = ['lex','yacc'] 5 | -------------------------------------------------------------------------------- /Parser/ply/cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/ply/cpp.py -------------------------------------------------------------------------------- /Parser/ply/ctokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/ply/ctokens.py -------------------------------------------------------------------------------- /Parser/ply/lex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/ply/lex.py -------------------------------------------------------------------------------- /Parser/ply/yacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Parser/ply/yacc.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/README.md -------------------------------------------------------------------------------- /ROBDD/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ROBDD/ite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ROBDD/ite.py -------------------------------------------------------------------------------- /ROBDD/operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ROBDD/operators.py -------------------------------------------------------------------------------- /ROBDD/robdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ROBDD/robdd.py -------------------------------------------------------------------------------- /ROBDD/robdd_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ROBDD/robdd_debug.py -------------------------------------------------------------------------------- /ROBDD/synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ROBDD/synthesis.py -------------------------------------------------------------------------------- /SpringBase/ACL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/ACL.py -------------------------------------------------------------------------------- /SpringBase/Action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/Action.py -------------------------------------------------------------------------------- /SpringBase/Firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/Firewall.py -------------------------------------------------------------------------------- /SpringBase/IPSec_Tunnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/IPSec_Tunnel.py -------------------------------------------------------------------------------- /SpringBase/Interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/Interface.py -------------------------------------------------------------------------------- /SpringBase/Ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/Ip.py -------------------------------------------------------------------------------- /SpringBase/Nat_Rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/Nat_Rule.py -------------------------------------------------------------------------------- /SpringBase/Nat_Rule_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/Nat_Rule_2.py -------------------------------------------------------------------------------- /SpringBase/Operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/Operator.py -------------------------------------------------------------------------------- /SpringBase/Port.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/Port.py -------------------------------------------------------------------------------- /SpringBase/Protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/Protocol.py -------------------------------------------------------------------------------- /SpringBase/Route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/Route.py -------------------------------------------------------------------------------- /SpringBase/Route_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/Route_info.py -------------------------------------------------------------------------------- /SpringBase/Rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/Rule.py -------------------------------------------------------------------------------- /SpringBase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/SpringBase/__init__.py -------------------------------------------------------------------------------- /Tools/ExcelToolKit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Tools/ExcelToolKit.py -------------------------------------------------------------------------------- /Tools/ReduceRule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Tools/ReduceRule.py -------------------------------------------------------------------------------- /Tools/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['ExcelToolKit', 'ReduceRule'] 2 | -------------------------------------------------------------------------------- /Tools/iptable_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/Tools/iptable_helper.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/long_doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/documentation/long_doc -------------------------------------------------------------------------------- /documentation/short_doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/documentation/short_doc -------------------------------------------------------------------------------- /input/template_matrix_table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/input/template_matrix_table.xlsx -------------------------------------------------------------------------------- /input/template_rule_to_excel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/input/template_rule_to_excel.xlsx -------------------------------------------------------------------------------- /parser.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/parser.out -------------------------------------------------------------------------------- /parsetab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/parsetab.py -------------------------------------------------------------------------------- /ressources/firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/firewall.png -------------------------------------------------------------------------------- /ressources/firewallred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/firewallred.png -------------------------------------------------------------------------------- /ressources/gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/gateway.png -------------------------------------------------------------------------------- /ressources/gatewayblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/gatewayblue.png -------------------------------------------------------------------------------- /ressources/gatewaycyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/gatewaycyan.png -------------------------------------------------------------------------------- /ressources/gatewaygreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/gatewaygreen.png -------------------------------------------------------------------------------- /ressources/gatewayorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/gatewayorange.png -------------------------------------------------------------------------------- /ressources/gatewayred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/gatewayred.png -------------------------------------------------------------------------------- /ressources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/icon.png -------------------------------------------------------------------------------- /ressources/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/network.png -------------------------------------------------------------------------------- /ressources/networkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/networkblue.png -------------------------------------------------------------------------------- /ressources/networkcyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/networkcyan.png -------------------------------------------------------------------------------- /ressources/networkgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/networkgreen.png -------------------------------------------------------------------------------- /ressources/networkorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/networkorange.png -------------------------------------------------------------------------------- /ressources/networkred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/networkred.png -------------------------------------------------------------------------------- /ressources/pointA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/pointA.png -------------------------------------------------------------------------------- /ressources/pointB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/ressources/pointB.png -------------------------------------------------------------------------------- /springbok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/springbok.py -------------------------------------------------------------------------------- /springbox_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/springbox_cli.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/checkpoint_parse/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'maurice' 2 | -------------------------------------------------------------------------------- /test/checkpoint_parse/newObj.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/checkpoint_parse/newObj.C -------------------------------------------------------------------------------- /test/checkpoint_parse/objects.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/checkpoint_parse/objects.C -------------------------------------------------------------------------------- /test/checkpoint_parse/parser.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/checkpoint_parse/parser.out -------------------------------------------------------------------------------- /test/checkpoint_parse/parsetab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/checkpoint_parse/parsetab.py -------------------------------------------------------------------------------- /test/checkpoint_parse/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/checkpoint_parse/save.py -------------------------------------------------------------------------------- /test/checkpoint_parse/testLex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/checkpoint_parse/testLex.py -------------------------------------------------------------------------------- /test/checkpoint_parse/testLex.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/checkpoint_parse/testLex.pyc -------------------------------------------------------------------------------- /test/checkpoint_parse/testYacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/checkpoint_parse/testYacc.py -------------------------------------------------------------------------------- /test/cisco_parse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule1.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule10.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule11.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule12.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule13.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule14.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule15.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule16.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule17.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule18.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule19.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule2.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule20.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule21.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule22.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule23.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule24.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule25.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule26.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule27.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule28.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule29.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule3.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule30.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule31.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule32.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule33.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule34.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule35.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule36.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule37.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule38.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule39.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule4.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule40.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule41.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule42.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule43.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule44.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule45.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule46.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule47.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule48.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule49.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule5.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule50.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule51.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule52.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule53.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule54.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule55.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule56.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule57.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule6.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule7.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule8.txt -------------------------------------------------------------------------------- /test/cisco_parse/ref_rule9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/ref_rule9.txt -------------------------------------------------------------------------------- /test/cisco_parse/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test.py -------------------------------------------------------------------------------- /test/cisco_parse/test_rule1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule1.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule10.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule11.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule12.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule13.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule14.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule15.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule16.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule17.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule18.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule19.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule2.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule20.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule21.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule22.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule23.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule24.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule25.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule26.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule27.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule28.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule29.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule3.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule30.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule31.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule32.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule33.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule34.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule35.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule36.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule37.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule38.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule39.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule4.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule40.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule41.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule42.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule43.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule44.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule45.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule46.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule47.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule48.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule49.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule5.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule50.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule51.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule52.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule53.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule54.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule55.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule56.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule57.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule6.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule7.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule8.txt -------------------------------------------------------------------------------- /test/cisco_parse/test_rule9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/cisco_parse/test_rule9.txt -------------------------------------------------------------------------------- /test/distributed_detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate1.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate10.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate101.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate102.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate103.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate104.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate105.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate106.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate107.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate108.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate109.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate11.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate110.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate111.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate112.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate12.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate2.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate201.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate202.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate203.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate204.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate205.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate206.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate207.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate208.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate209.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate210.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate211.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate3.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate4.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate5.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate6.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate7.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate8.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_correlate9.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_raised1.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*raised.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_raised101.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*raised.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_raised102.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*raised.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_raised103.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*raised.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_raised104.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*raised.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_raised105.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*raised.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_raised2.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*raised.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_raised201.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*raised.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_raised202.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*raised.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_raised3.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*raised.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_raised4.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*raised.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_raised5.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*raised.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant1.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant101.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant102.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant103.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant104.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant105.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant106.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant107.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant108.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant109.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant2.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant3.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant4.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant5.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant6.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant7.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant8.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_redudant9.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*redundant.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow1.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow101.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow102.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow103.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow104.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow105.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow106.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow107.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow108.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow109.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow2.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow201.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow202.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow203.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow3.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow4.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow5.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow6.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow7.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow8.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/ref_shadow9.txt: -------------------------------------------------------------------------------- 1 | .*WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/distributed_detection/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/distributed_detection/test.py -------------------------------------------------------------------------------- /test/distributed_detection/test.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/distributed_detection/test.pyc -------------------------------------------------------------------------------- /test/fortinet_parse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule1.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule10.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule100.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule101.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule102.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule103.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule104.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule105.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule106.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule107.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule108.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule109.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule11.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule110.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule111.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule112.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule113.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule113.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule114.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule115.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule115.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule116.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule117.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule117.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule118.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule118.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule119.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule119.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule12.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule120.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule121.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule121.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule122.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule122.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule123.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule124.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule124.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule125.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule125.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule126.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule126.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule127.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule127.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule128.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule129.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule129.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule13.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule130.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule130.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule131.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule131.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule132.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule132.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule133.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule133.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule134.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule134.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule135.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule135.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule136.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule136.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule137.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule137.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule138.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule138.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule139.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule139.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule14.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule140.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule140.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule141.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule141.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule142.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule142.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule143.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule143.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule144.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule144.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule145.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule145.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule146.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule146.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule147.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule147.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule148.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule148.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule149.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule149.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule15.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule150.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule150.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule151.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule151.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule152.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule152.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule153.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule153.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule154.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule154.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule155.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule155.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule156.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule156.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule157.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule157.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule158.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule158.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule159.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule159.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule16.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule160.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule160.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule161.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule161.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule162.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule162.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule163.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule163.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule164.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule164.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule165.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule165.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule166.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule166.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule167.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule167.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule168.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule168.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule169.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule169.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule17.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule170.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule170.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule171.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule171.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule172.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule172.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule173.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule173.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule174.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule174.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule175.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule175.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule176.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule176.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule177.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule177.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule178.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule178.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule179.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule179.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule18.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule180.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule180.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule181.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule181.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule182.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule182.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule183.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule183.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule184.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule184.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule185.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule185.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule19.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule2.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule20.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule21.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule22.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule23.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule24.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule25.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule26.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule27.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule28.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule29.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule3.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule30.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule31.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule32.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule33.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule34.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule35.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule36.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule37.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule38.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule39.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule4.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule40.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule41.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule42.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule43.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule44.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule45.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule46.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule47.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule48.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule49.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule5.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule50.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule51.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule52.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule53.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule54.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule55.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule56.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule57.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule58.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule59.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule6.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule60.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule60.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule61.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule62.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule63.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule64.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule65.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule66.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule66.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule67.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule68.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule69.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule69.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule7.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule70.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule70.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule71.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule71.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule72.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule73.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule74.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule75.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule75.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule76.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule77.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule78.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule79.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule79.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule8.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule80.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule81.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule82.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule83.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule84.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule85.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule86.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule87.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule88.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule89.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule9.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule90.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule91.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule92.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule93.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule93.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule94.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule95.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule96.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule97.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule98.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule98.txt -------------------------------------------------------------------------------- /test/fortinet_parse/ref_rule99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/ref_rule99.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test.py -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule1.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule10.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule100.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule101.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule102.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule103.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule104.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule105.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule106.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule107.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule108.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule109.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule11.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule110.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule111.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule112.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule113.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule113.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule114.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule115.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule115.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule116.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule117.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule117.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule118.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule118.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule119.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule119.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule12.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule120.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule121.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule121.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule122.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule122.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule123.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule124.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule124.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule125.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule125.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule126.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule126.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule127.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule127.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule128.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule129.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule129.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule13.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule130.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule130.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule131.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule131.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule132.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule132.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule133.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule133.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule134.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule134.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule135.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule135.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule136.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule136.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule137.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule137.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule138.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule138.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule139.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule139.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule14.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule140.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule140.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule141.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule141.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule142.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule142.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule143.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule143.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule144.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule144.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule145.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule145.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule146.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule146.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule147.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule147.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule148.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule148.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule149.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule149.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule15.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule150.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule150.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule151.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule151.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule152.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule152.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule153.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule153.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule154.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule154.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule155.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule155.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule156.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule156.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule157.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule157.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule158.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule158.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule159.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule159.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule16.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule160.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule160.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule161.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule161.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule162.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule162.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule163.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule163.txt -------------------------------------------------------------------------------- /test/fortinet_parse/test_rule164.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/fortinet_parse/test_rule164.txt -------------------------------------------------------------------------------- /test/internal_detection/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate1.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate10.txt: -------------------------------------------------------------------------------- 1 | NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate101.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate102.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate103.txt: -------------------------------------------------------------------------------- 1 | WARNING.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate104.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate105.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate106.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate107.txt: -------------------------------------------------------------------------------- 1 | NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate108.txt: -------------------------------------------------------------------------------- 1 | NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate109.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate11.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate110.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate111.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate112.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate113.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate114.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate115.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate116.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate117.txt: -------------------------------------------------------------------------------- 1 | NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate118.txt: -------------------------------------------------------------------------------- 1 | NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate119.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate12.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate120.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate13.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate14.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate15.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate16.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate17.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate18.txt: -------------------------------------------------------------------------------- 1 | NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate19.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate2.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate20.txt: -------------------------------------------------------------------------------- 1 | NOTIFICATION.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate3.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate301.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate302.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate303.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate4.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate5.txt: -------------------------------------------------------------------------------- 1 | WARNING.*overlap.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate6.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate7.txt: -------------------------------------------------------------------------------- 1 | .*NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate8.txt: -------------------------------------------------------------------------------- 1 | NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_correlate9.txt: -------------------------------------------------------------------------------- 1 | NOTIFICATION.*generalized.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant1.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant10.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant101.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant102.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant103.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant104.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant105.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant106.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant107.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant108.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant109.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant11.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant110.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant111.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant112.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant113.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant114.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant115.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant116.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant117.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant118.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant119.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant12.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant120.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant13.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant14.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant15.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant16.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant17.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant18.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant19.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant2.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant20.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant3.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant301.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant302.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant303.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant4.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant5.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant6.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant7.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant8.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_redudant9.txt: -------------------------------------------------------------------------------- 1 | WARNING.*redundant.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow1.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow10.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow101.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow102.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow103.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow104.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow105.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow106.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow107.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow108.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow109.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow11.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow110.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow111.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow112.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow113.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow114.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow115.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow116.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow117.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow118.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow119.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow12.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow120.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow13.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow14.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow15.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow16.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow17.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow18.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow19.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow2.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow20.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow3.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow301.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow302.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadowed.* -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow303.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow4.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow5.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow6.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow7.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow8.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/ref_shadow9.txt: -------------------------------------------------------------------------------- 1 | WARNING.*shadow.* 2 | -------------------------------------------------------------------------------- /test/internal_detection/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/internal_detection/test.py -------------------------------------------------------------------------------- /test/iptables_parse/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/iptables_parse/ref_rule1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/iptables_parse/ref_rule1.txt -------------------------------------------------------------------------------- /test/iptables_parse/ref_rule2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/iptables_parse/ref_rule2.txt -------------------------------------------------------------------------------- /test/iptables_parse/ref_rule3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/iptables_parse/ref_rule3.txt -------------------------------------------------------------------------------- /test/iptables_parse/ref_rule4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/iptables_parse/ref_rule4.txt -------------------------------------------------------------------------------- /test/iptables_parse/ref_rule5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/iptables_parse/ref_rule5.txt -------------------------------------------------------------------------------- /test/iptables_parse/ref_rule6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/iptables_parse/ref_rule6.txt -------------------------------------------------------------------------------- /test/iptables_parse/ref_rule7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/iptables_parse/ref_rule7.txt -------------------------------------------------------------------------------- /test/iptables_parse/ref_rule8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/iptables_parse/ref_rule8.txt -------------------------------------------------------------------------------- /test/iptables_parse/ref_rule9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/iptables_parse/ref_rule9.txt -------------------------------------------------------------------------------- /test/iptables_parse/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/iptables_parse/test.py -------------------------------------------------------------------------------- /test/juniper_parse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule1.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule10.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule11.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule12.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule13.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule14.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule15.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule16.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule17.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule18.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule19.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule2.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule20.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule21.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule22.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule23.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule24.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule25.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule26.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule27.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule28.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule29.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule3.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule30.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule31.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule32.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule33.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule34.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule35.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule35.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule36.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule36.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule37.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule37.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule38.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule38.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule39.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule39.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule4.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule40.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule41.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule41.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule42.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule43.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule43.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule44.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule45.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule46.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule47.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule48.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule49.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule5.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule50.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule51.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule52.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule53.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule54.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule54.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule55.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule56.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule57.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule57.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule58.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule58.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule59.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule6.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule60.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule60.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule61.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule62.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule63.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule64.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule65.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule66.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule66.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule67.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule68.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule69.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule69.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule7.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule70.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule70.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule71.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule71.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule72.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule73.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule74.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule75.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule75.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule76.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule77.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule78.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule79.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule79.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule8.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule80.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule81.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule82.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule83.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule84.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule85.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule86.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule87.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule88.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule89.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule9.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule90.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule91.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule92.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule93.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule93.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule94.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule95.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule96.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule97.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule98.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule98.txt -------------------------------------------------------------------------------- /test/juniper_parse/ref_rule99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/ref_rule99.txt -------------------------------------------------------------------------------- /test/juniper_parse/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/test.py -------------------------------------------------------------------------------- /test/juniper_parse/test_rule1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/test_rule1.txt -------------------------------------------------------------------------------- /test/juniper_parse/test_rule2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/test_rule2.txt -------------------------------------------------------------------------------- /test/juniper_parse/test_rule3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/test_rule3.txt -------------------------------------------------------------------------------- /test/juniper_parse/test_rule4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/test_rule4.txt -------------------------------------------------------------------------------- /test/juniper_parse/test_rule5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/test_rule5.txt -------------------------------------------------------------------------------- /test/juniper_parse/test_rule6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/test_rule6.txt -------------------------------------------------------------------------------- /test/juniper_parse/test_rule7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/test_rule7.txt -------------------------------------------------------------------------------- /test/juniper_parse/test_rule8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/test_rule8.txt -------------------------------------------------------------------------------- /test/juniper_parse/test_rule9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/juniper_parse/test_rule9.txt -------------------------------------------------------------------------------- /test/parser.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/parser.out -------------------------------------------------------------------------------- /test/parsetab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/parsetab.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conix-security/audit-springbok/HEAD/test/test.py --------------------------------------------------------------------------------