mirror of
https://github.com/vysecurity/LinkedInt.git
synced 2025-12-07 01:12:16 +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_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_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_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:
|
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'])
|
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:
|
except:
|
||||||
|
|
@ -310,8 +310,8 @@ def get_search():
|
||||||
f.write(foot.encode())
|
f.write(foot.encode())
|
||||||
f.close()
|
f.close()
|
||||||
f = open(baseDir + '{}.csv'.format(outfile), 'wb')
|
f = open(baseDir + '{}.csv'.format(outfile), 'wb')
|
||||||
#newcsv='\n'.join(csv)
|
newcsv='\n'.join(csv)
|
||||||
#f.writelines(newcsv.encode())
|
f.write(newcsv.encode())
|
||||||
for x in csv:
|
for x in csv:
|
||||||
f.write(x.join('\n').encode())
|
f.write(x.join('\n').encode())
|
||||||
f.close()
|
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
|
# Sponsor Open Source Tooling
|
||||||
|
|
||||||
* Feel free to sponsor me for maintaining the tool: https://github.com/sponsors/vysecurity
|
* Feel free to sponsor me for maintaining the tool: https://github.com/sponsors/vysecurity
|
||||||
|
|
@ -18,11 +22,18 @@ Contributors:
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
```
|
```
|
||||||
|
git clone https://github.com/vysecurity/LinkedInt
|
||||||
|
cd LinkedInt
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
**[v1.1 01-05-2021]**
|
||||||
|
|
||||||
|
Fixes:
|
||||||
|
* Temporary fix for location field missing
|
||||||
|
|
||||||
**[v1.1 27-03-2021]**
|
**[v1.1 27-03-2021]**
|
||||||
|
|
||||||
Fixes:
|
Fixes:
|
||||||
|
|
@ -84,3 +95,7 @@ auto
|
||||||
[!] {first}.{last}
|
[!] {first}.{last}
|
||||||
[+] Found first.last prefix
|
[+] 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
|
idna==2.6
|
||||||
requests==2.20.0
|
requests==2.20.0
|
||||||
thready==0.1.5
|
thready==0.1.5
|
||||||
urllib3==1.24.2
|
urllib3==1.26.5
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue