Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ターミナルアプリケーション用表フォーマットサポートツール。格子。
:rage1::rage1::rage1:,:alien:,:older_woman::older_woman:
:older_man:,:dog:,:baby::baby::baby::baby::baby::baby::baby:
:cat::cat:,:octocat::octocat::octocat::octocat::octocat::octocat::octocat:,:octopus::octopus::octopus::octopus::octopus:
+----------+--------------------------+--------------------------+
|:rage1::rage1::rage1:|:alien::grey_question::grey_question::grey_question::grey_question::grey_question::grey_question:|:older_woman::older_woman::grey_question::grey_question::grey_question::grey_question::grey_question:|
|:older_man::grey_question::grey_question:|:dog::grey_question::grey_question::grey_question::grey_question::grey_question::grey_question:|:baby::baby::baby::baby::baby::baby::baby:|
|:cat::cat::grey_question:|:octocat::octocat::octocat::octocat::octocat::octocat::octocat:|:octopus::octopus::octopus::octopus::octopus::grey_question::grey_question:|
+----------+--------------------------+--------------------------+
Add this line to your application's Gemfile:
gem 'kosi'
And then execute:
$ bundle
Or install it yourself as:
$ gem install kosi
2次元配列をテーブルフォーマットにして出力します。
:link: terminal-table gem の日本語対応版にあたります。
(terminal-tableはASCII対応のみなので全角文字が混ざるとテーブルレイアウトが崩れる)
配置指定。右寄せ、左寄せ、中央を選択可能。
設定可能パラメータ | 説明 |
---|---|
Kosi::Align::TYPE::RIGHT | 右寄せ |
Kosi::Align::TYPE::LEFT | 左寄せ。デフォルト |
Kosi::Align::TYPE::CENTER | 中央 |
表の結合部に表示するテキスト。1文字で指定。
下記で言うところの 「+」がConnectorChar。
+-----+------+-------+
|a |b |c |
+-----+------+-------+
表のヘッダー。配列で指定。
デフォルトはヘッダーなし。
水平線を1文字で設定。
デフォルトは「-」(半角ハイフン)
各行に区切り線を入れるかどうか。
デフォルトは「false」
垂直線を1文字で設定。
デフォルトは「|」(パイプ)
require 'kosi'
kosi = Kosi::Table.new
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333']])
+-----+------+-------+
|a |b |c |
|ほゲ1|ひゲ22|へゲ333|
+-----+------+-------+
require 'kosi'
kosi = Kosi::Table.new({align: Kosi::Align::TYPE::CENTER})
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333']])
kosi = Kosi::Table.new({align: Kosi::Align::TYPE::RIGHT})
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333']])
kosi = Kosi::Table.new({align: Kosi::Align::TYPE::LEFT})
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333']])
+-----+------+-------+
| a | b | c |
|ほゲ1|ひゲ22|へゲ333|
+-----+------+-------+
+-----+------+-------+
| a| b| c|
|ほゲ1|ひゲ22|へゲ333|
+-----+------+-------+
+-----+------+-------+
|a |b |c |
|ほゲ1|ひゲ22|へゲ333|
+-----+------+-------+
require 'kosi'
kosi = Kosi::Table.new
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333']])
kosi = Kosi::Table.new({connector_char: 'x'})
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333']])
kosi = Kosi::Table.new({connector_char: '$'})
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333']])
+-----+------+-------+
|a |b |c |
|ほゲ1|ひゲ22|へゲ333|
+-----+------+-------+
x-----x------x-------x
|a |b |c |
|ほゲ1|ひゲ22|へゲ333|
x-----x------x-------x
$-----$------$-------$
|a |b |c |
|ほゲ1|ひゲ22|へゲ333|
$-----$------$-------$
require 'kosi'
kosi = Kosi::Table.new
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333']])
kosi = Kosi::Table.new({header: %w{column1 column2 column3}})
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333']])
+-----+------+-------+
|a |b |c |
|ほゲ1|ひゲ22|へゲ333|
+-----+------+-------+
+-------+-------+-------+
|column1|column2|column3|
+-------+-------+-------+
|a |b |c |
|ほゲ1 |ひゲ22 |へゲ333|
+-------+-------+-------+
require 'kosi'
kosi = Kosi::Table.new
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333']])
kosi = Kosi::Table.new({horizontal_border_char: '*'})
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333']])
+-----+------+-------+
|a |b |c |
|ほゲ1|ひゲ22|へゲ333|
+-----+------+-------+
+*****+******+*******+
|a |b |c |
|ほゲ1|ひゲ22|へゲ333|
+*****+******+*******+
require 'kosi'
kosi = Kosi::Table.new
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333'], [*'a'..'c']])
kosi = Kosi::Table.new({separate_each_row: true})
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333'], [*'a'..'c']])
+-----+------+-------+
|a |b |c |
|ほゲ1|ひゲ22|へゲ333|
|a |b |c |
+-----+------+-------+
+-----+------+-------+
|a |b |c |
+-----+------+-------+
|ほゲ1|ひゲ22|へゲ333|
+-----+------+-------+
|a |b |c |
+-----+------+-------+
require 'kosi'
kosi = Kosi::Table.new
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333']])
kosi = Kosi::Table.new({vertical_border_char: '#'})
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333']])
+-----+------+-------+
|a |b |c |
|ほゲ1|ひゲ22|へゲ333|
+-----+------+-------+
+-----+------+-------+
#a #b #c #
#ほゲ1#ひゲ22#へゲ333#
+-----+------+-------+
様々なオプションを一気に指定してみます
require 'kosi'
kosi = Kosi::Table.new(
{
align: Kosi::Align::TYPE::CENTER,
connector_char: 'x',
header: %w{column1 column2 column3},
horizontal_border_char: '*',
vertical_border_char: '#',
separate_each_row: true
}
)
print kosi.render([[*'a'..'c'], ['ほゲ1', 'ひゲ22', 'へゲ333'], [*'a'..'c']])
x*******x*******x*******x
#column1#column2#column3#
x*******x*******x*******x
# a # b # c #
x*******x*******x*******x
# ほゲ1 #ひゲ22 #へゲ333#
x*******x*******x*******x
# a # b # c #
x*******x*******x*******x
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that kosi demonstrated a not healthy version release cadence and project activity because the last version was released 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.