mirror of
https://github.com/hahwul/WebHackersWeapons.git
synced 2024-12-18 04:04:29 -05:00
Update script
This commit is contained in:
parent
31c5d82063
commit
f2e64b0688
@ -16,6 +16,30 @@ def get_os install
|
|||||||
return lst
|
return lst
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def get_browser str
|
||||||
|
lst = []
|
||||||
|
if str.include? 'Chrome'
|
||||||
|
lst.push 'chrome'
|
||||||
|
end
|
||||||
|
if str.include? 'Firefox'
|
||||||
|
lst.push 'firefox'
|
||||||
|
end
|
||||||
|
if str.include? 'Safari'
|
||||||
|
lst.push 'safari'
|
||||||
|
end
|
||||||
|
if str.include? 'Burp'
|
||||||
|
lst.push 'burpsuite'
|
||||||
|
end
|
||||||
|
if str.include? 'ZAP'
|
||||||
|
lst.push 'zap'
|
||||||
|
end
|
||||||
|
if str.include? 'All'
|
||||||
|
lst.push 'burpsuite'
|
||||||
|
lst.push 'zap'
|
||||||
|
end
|
||||||
|
return lst
|
||||||
|
end
|
||||||
|
|
||||||
def get_urls str
|
def get_urls str
|
||||||
return URI.extract(str).uniq
|
return URI.extract(str).uniq
|
||||||
end
|
end
|
||||||
@ -34,7 +58,12 @@ def migrate jsonfile, category
|
|||||||
new_obj['category'] = category
|
new_obj['category'] = category
|
||||||
new_obj['types'] = []
|
new_obj['types'] = []
|
||||||
if obj['Install'] != nil
|
if obj['Install'] != nil
|
||||||
new_obj['os'] = get_os(obj['Install'])
|
new_obj['platform'] = get_os(obj['Install'])
|
||||||
|
end
|
||||||
|
if category.include? 'addon'
|
||||||
|
if obj['Type'].length > 0
|
||||||
|
new_obj['platform'] = get_browser(obj['Type'])
|
||||||
|
end
|
||||||
end
|
end
|
||||||
new_obj['lang'] = [] # parse DATA
|
new_obj['lang'] = [] # parse DATA
|
||||||
new_obj['tags'] = []
|
new_obj['tags'] = []
|
||||||
|
Loading…
Reference in New Issue
Block a user