
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Extract information from the exported Web of Science's tab delimited text file
Extract information from the exported Web of Science's tab delimited text file
pip install wos-tabfile
from wostabfile.core import WosTabFile
from collections import OrderedDict
# data source
root_path = "data/social network"
file_path = root_path + "/part1.txt"
# header fields in the text file
# Tag from: https://images.webofknowledge.com/images/help/WOS/hs_wos_fieldtags.html
wos_fields = ["PY", "NR", "TC", "U1", "U2"]
# load data by specific keys
wtf = WosTabFile(file_path=file_path)
table = wtf.generate_table(wos_fields)
print()
# group by year using count for numbers of publications per year
new_table=wtf.group_by(table,key_index=0,value_index=1,method="count")
new_table = OrderedDict(sorted(new_table.items()))
print("Year\tNumber of publication")
for year in new_table:
print(f'{year}\t{new_table[year]}')
from wostabfile.core import WosTabFile
from nltk.stem import WordNetLemmatizer
from nltk.tokenize import word_tokenize
root_path = "data/social network"
wos_fields = ["DE"]
wtf = WosTabFile(file_path=root_path)
dict_words={}
def singularize(text):
wnl = WordNetLemmatizer()
tokens = [token.lower() for token in word_tokenize(text)]
lemmatized_words = [wnl.lemmatize(token) for token in tokens]
return (' '.join(lemmatized_words)).strip()
def process_row(rows):
global dict_words
for ks in rows:
wlist=ks[0]
for w in wlist.split(";"):
w=w.strip()
if w=="":
continue
w=singularize(w)
if w not in dict_words.keys():
dict_words[w]=1
else:
dict_words[w]+=1
table = wtf.generate_table_by_folder(wos_fields,func=process_row)
dict_words = dict(sorted(dict_words.items(),reverse=True, key=lambda item: item[1]))
print("Word\tTerm Count")
for k in list(dict_words.keys())[:20]:
print(f'{k}\t{dict_words[k]}')
print()
print("Number of unique words: ",len(dict_words.keys()))
Sample bibliometric data in the above examples can be downloaded in this link.
The wos-tabfile
project is provided by Donghua Chen.
FAQs
Extract information from the exported Web of Science's tab delimited text file
We found that wos-tabfile demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.