
Research
Namastex.ai npm Packages Hit with TeamPCP-Style CanisterWorm Malware
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.
cricheroes
Advanced tools
Python APIs to fetch and store data of a particular team from cricheroes.in
pip install cricheroes
from cricheroes import Team
# Create Team Object
team = Team(url='2580003/CP-Sm@shers')
# Get all players, returns list of Player object in cricheroes module
players = team.get_players()
# Print player names
for player in players:
print(player.name)
# Get recent matches played by the team, returns list of Match object
matches = team.get_matches()
# Print match results
for match in matches:
print(match.result)
# Get over all team statistics from Stats tab
stats = team.get_team_stats()
# Print match results
for stat in stats:
print(stat.label)
print(stat.value)
# Get leaderboard/top performer of the team, returns dictionary with batting, bowling, fielding statistics
# Each value contains list of LeaderboardStat
leaderboard = team.get_leaderboard()
# Print batting stat
for item in leaderboard['batting']:
print(item.player_name, item.stat)
# Print batting stat
for item in leaderboard['bowling']:
print(item.player_name, item.stat)
# Print fielding stat
for item in leaderboard['fielding']:
print(item.player_name, item.stat)
# Get all data and dump to json
from cricheroes import Team
# Create Team Object
team = Team(url='2580003/CP-Sm@shers')
team.dump_all()
# This will craete a json file 'out.json' at current directory
python cricheroes_test.py
FAQs
Python APIs to fetch and store team data from cricheroes.in
We found that cricheroes 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
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.