Compare commits

...

12 commits
v1.1 ... master

Author SHA1 Message Date
Vincent Yiu
89ab1d32d1
Merge pull request #25 from vysecurity/dependabot/pip/urllib3-1.26.5
Bump urllib3 from 1.24.2 to 1.26.5
2021-06-09 20:37:02 +08:00
Vincent Yiu
fbe71fd191
Merge pull request #24 from SamSepiol0/master
Fix for exporting csv file
2021-06-09 20:36:19 +08:00
dependabot[bot]
2f933a6184
Bump urllib3 from 1.24.2 to 1.26.5
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.24.2 to 1.26.5.
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](https://github.com/urllib3/urllib3/compare/1.24.2...1.26.5)

---
updated-dependencies:
- dependency-name: urllib3
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-06-01 21:53:23 +00:00
ExploitXx
9e62818eb6
Fix for exporting csv file 2021-05-12 12:20:34 +01:00
Vincent Yiu
517871b4e9 Update temp fix 2021-05-01 01:49:00 +08:00
Vincent Yiu
1c63994413 Merge branch 'master' of http://github.com/vysec/linkedint 2021-05-01 01:48:02 +08:00
Vincent Yiu
628b970ba0 Temp fix 2021-05-01 01:47:17 +08:00
Vincent Yiu
fef9ba2ac5
Update README.md 2021-04-05 16:16:49 +08:00
Vincent Yiu
ad48e87c5c Try :) 2021-04-01 21:44:35 +08:00
Vincent Yiu
6417f9a928 Try :) 2021-04-01 21:43:40 +08:00
Vincent Yiu
13a3c95635 Fix CSV :) 2021-04-01 21:32:56 +08:00
Vincent Yiu
d5c4364233 Update README 2021-03-28 01:47:54 +08:00
5 changed files with 19 additions and 4 deletions

View file

@ -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()

View file

@ -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):
![Output HTML Report](asset/htmlreport.png)

BIN
asset/htmlreport.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 437 KiB

BIN
asset/linkedint.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -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