Projects STRLCPY mosint Commits 5c8d906a
🤬
  • ■ ■ ■ ■
    modules/BreachDirectory.go
    skipped 30 lines
    31 31   req.Header.Add("x-rapidapi-host", "breachdirectory.p.rapidapi.com")
    32 32   req.Header.Add("x-rapidapi-key", key)
    33 33   
    34  - res, _ := http.DefaultClient.Do(req)
     34 + res, err := http.DefaultClient.Do(req)
     35 + if err != nil {
     36 + panic(err)
     37 + }
    35 38   
    36 39   defer res.Body.Close()
    37 40   body, _ := ioutil.ReadAll(res.Body)
    skipped 5 lines
  • ■ ■ ■ ■ ■ ■
    modules/Holehe.py
    1  -#mosint v2.1
    2  -#Author: Alp Keskin
    3  -#Github: github.com/alpkeskin
    4  -#Website: https://imalp.co
     1 +# mosint v2.1
     2 +# Author: Alp Keskin
     3 +# Github: github.com/alpkeskin
     4 +# Website: https://imalp.co
    5 5  from genericpath import exists
    6 6  import trio
    7 7  import httpx
    skipped 29 lines
    37 37   file.close()
    38 38   except Exception as e:
    39 39   print(e)
     40 + 
    40 41   
    41 42  trio.run(main)
    42 43   
  • ■ ■ ■ ■ ■ ■
    modules/SocialScan.py
    1  -#mosint v2.1
    2  -#Author: Alp Keskin
    3  -#Github: github.com/alpkeskin
    4  -#Website: https://imalp.co
     1 +# mosint v2.1
     2 +# Author: Alp Keskin
     3 +# Github: github.com/alpkeskin
     4 +# Website: https://imalp.co
    5 5  from socialscan.util import Platforms, sync_execute_queries
    6 6  import argparse
    7  - 
    8 7   
    9 8   
    10 9  def parse_args():
    skipped 23 lines
    34 33   f.close()
    35 34   except Exception as e:
    36 35   print(e)
     36 + 
    37 37   
    38 38  main()
    39 39   
Please wait...
Page is in error, reload to recover