Projects STRLCPY Taipan Commits 424e16cd
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■
    Src/ES.Taipan.Fingerprinter/FingerprintWithSignatures.fs
    skipped 111 lines
    112 112   serviceMetrics.WaitForTasksFingerprintCompletation(!counter)
    113 113   
    114 114   // add back the new web applications
     115 + webApplicationFound.Clear()
    115 116   webApplicationFound.AddRange(identifiedWebApplications)
    116 117  
    117 118   member this.Fingerprint(fingerprintRequest: FingerprintRequest, webApplicationFound: List<WebApplicationIdentified>) =
    skipped 12 lines
  • ■ ■ ■ ■ ■ ■
    Src/EndToEndTests/MockData.fs
    skipped 221 lines
    222 222   context.AddOnStorage.SaveProperty("Joomla", ["V0001"; "V0002"])
    223 223  
    224 224   let vuln = {Id = Guid.NewGuid(); Application = "Joomla"; AffectedVersions = ["3.0.0 - 3.4.5"]; VulnerabilityName = "Joomla 3.4.4 RXSS"; Impact = "Low"; ExternalReferer = "CVE-1.2.3"}
    225  - context.AddOnStorage.SaveProperty("V0001", vuln)
     225 + context.AddOnStorage.SaveProperty("Joomla_V0001", vuln)
    226 226   
    227 227   let vuln = {Id = Guid.NewGuid(); Application = "Joomla"; AffectedVersions = ["3.4.3"]; VulnerabilityName = "Joomla 3.4.4 RCE"; Impact = "Medium"; ExternalReferer = "CVE-1.2.4"}
    228  - context.AddOnStorage.SaveProperty("V0002", vuln)
     228 + context.AddOnStorage.SaveProperty("Joomla_V0002", vuln)
    229 229  
    230 230   let ``Website fingerprinting``() =
    231 231   let webAppFingerprinterProfile = new ES.Taipan.Application.TemplateProfile(Id = Guid.Parse("4E813E5A-8738-4A86-B9F2-BC6E5023A7A9"), Name = "Fingerprint web application")
    skipped 91 lines
  • ■ ■ ■ ■
    Src/EndToEndTests/Program.fs
    skipped 8 lines
    9 9  open FSharp.Quotations.Evaluator
    10 10   
    11 11  let allTests : Expr<Uri -> unit> list = [
     12 + 
    12 13   // Discovere tests
    13 14   <@ DiscovererTests.``Non recursive discoverer of hidden resources`` @>
    14 15   <@ DiscovererTests.``Recursive discoverer of hidden resources`` @>
    skipped 99 lines
    114 115   testMethod(grovieraUri)
    115 116   | _ -> failwith "Wrong expression"
    116 117   | _ -> failwith "Wrong expression"
    117  -
    118 118  
    119 119  [<EntryPoint>]
    120 120  let main argv =
    skipped 5 lines
  • ■ ■ ■ ■ ■
    Src/templates.fsx
    skipped 225 lines
    226 226   template.VulnerabilityScannerSettings.AddOnIdsToActivate.Add(Guid.Parse("85EF16CC-3682-4CDC-A2F5-A5FD889474FF")) // Missing Autocomplete to False
    227 227   template.VulnerabilityScannerSettings.AddOnIdsToActivate.Add(Guid.Parse("A719DE80-32BF-4E53-BCB2-D138BF953853")) // Missing Cookie HttpOnly
    228 228   template.VulnerabilityScannerSettings.AddOnIdsToActivate.Add(Guid.Parse("FDC3E54E-98F2-4C14-A620-9E4629CAEE0B")) // Missing Cookie Secure
     229 + template.VulnerabilityScannerSettings.AddOnIdsToActivate.Add(Guid.Parse("C76061B2-52AE-4C64-BD2E-71EA3AC41B93")) // Exposed Session Variables
    229 230  
    230 231   template
    231 232   
    skipped 17 lines
Please wait...
Page is in error, reload to recover