mirror of
https://github.com/vysecurity/LinkedInt.git
synced 2025-12-06 17:02:19 +01:00
Compare commits
12 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
89ab1d32d1 | ||
|
|
fbe71fd191 | ||
|
|
2f933a6184 | ||
|
|
9e62818eb6 | ||
|
|
517871b4e9 | ||
|
|
1c63994413 | ||
|
|
628b970ba0 | ||
|
|
fef9ba2ac5 | ||
|
|
ad48e87c5c | ||
|
|
6417f9a928 | ||
|
|
13a3c95635 | ||
|
|
d5c4364233 |
5 changed files with 19 additions and 4 deletions
|
|
@ -215,7 +215,7 @@ def get_search():
|
|||
data_lastname = c['hitInfo']['com.linkedin.voyager.search.SearchProfile']['miniProfile']['lastName']
|
||||
data_slug = "https://www.linkedin.com/in/%s" % c['hitInfo']['com.linkedin.voyager.search.SearchProfile']['miniProfile']['publicIdentifier']
|
||||
data_occupation = c['hitInfo']['com.linkedin.voyager.search.SearchProfile']['miniProfile']['occupation']
|
||||
data_location = c['hitInfo']['com.linkedin.voyager.search.SearchProfile']['location']
|
||||
data_location = "" #c['hitInfo']['com.linkedin.voyager.search.SearchProfile']['location']
|
||||
try:
|
||||
data_picture = "%s%s" % (c['hitInfo']['com.linkedin.voyager.search.SearchProfile']['miniProfile']['picture']['com.linkedin.common.VectorImage']['rootUrl'],c['hitInfo']['com.linkedin.voyager.search.SearchProfile']['miniProfile']['picture']['com.linkedin.common.VectorImage']['artifacts'][2]['fileIdentifyingUrlPathSegment'])
|
||||
except:
|
||||
|
|
@ -310,8 +310,8 @@ def get_search():
|
|||
f.write(foot.encode())
|
||||
f.close()
|
||||
f = open(baseDir + '{}.csv'.format(outfile), 'wb')
|
||||
#newcsv='\n'.join(csv)
|
||||
#f.writelines(newcsv.encode())
|
||||
newcsv='\n'.join(csv)
|
||||
f.write(newcsv.encode())
|
||||
for x in csv:
|
||||
f.write(x.join('\n').encode())
|
||||
f.close()
|
||||
|
|
|
|||
15
README.md
15
README.md
|
|
@ -1,3 +1,7 @@
|
|||
<p align="center">
|
||||
<img src="https://github.com/vysecurity/LinkedInt/blob/master/asset/linkedint.png?raw=true">
|
||||
</p>
|
||||
|
||||
# Sponsor Open Source Tooling
|
||||
|
||||
* Feel free to sponsor me for maintaining the tool: https://github.com/sponsors/vysecurity
|
||||
|
|
@ -18,11 +22,18 @@ Contributors:
|
|||
|
||||
# Installation
|
||||
```
|
||||
git clone https://github.com/vysecurity/LinkedInt
|
||||
cd LinkedInt
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
# Change Log
|
||||
|
||||
**[v1.1 01-05-2021]**
|
||||
|
||||
Fixes:
|
||||
* Temporary fix for location field missing
|
||||
|
||||
**[v1.1 27-03-2021]**
|
||||
|
||||
Fixes:
|
||||
|
|
@ -84,3 +95,7 @@ auto
|
|||
[!] {first}.{last}
|
||||
[+] Found first.last prefix
|
||||
```
|
||||
|
||||
Output (HTML):
|
||||
|
||||

|
||||
|
|
|
|||
BIN
asset/htmlreport.png
Normal file
BIN
asset/htmlreport.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 437 KiB |
BIN
asset/linkedint.png
Normal file
BIN
asset/linkedint.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
|
|
@ -4,4 +4,4 @@ chardet==3.0.4
|
|||
idna==2.6
|
||||
requests==2.20.0
|
||||
thready==0.1.5
|
||||
urllib3==1.24.2
|
||||
urllib3==1.26.5
|
||||
|
|
|
|||
Loading…
Reference in a new issue