earthweblog.com Open in urlscan Pro
183.181.90.74  Public Scan

Submitted URL: http://earthweblog.com/telnet-virus-test-mail-attachment/
Effective URL: https://earthweblog.com/telnet-virus-test-mail-attachment/
Submission: On July 03 via manual from JP — Scanned from JP

Form analysis 4 forms found in the DOM

POST https://earthweblog.com/wp-comments-post.php

<form action="https://earthweblog.com/wp-comments-post.php" method="post" id="commentform" class="comment-form">
  <p class="comment-notes"><span id="email-notes">メールアドレスが公開されることはありません。</span> <span class="required">*</span> が付いている欄は必須項目です</p>
  <p class="comment-form-comment"><label for="comment">コメント</label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required="required"></textarea></p>
  <p class="comment-form-author"><label for="author">名前 <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" required="required"></p>
  <p class="comment-form-email"><label for="email">メール <span class="required">*</span></label> <input id="email" name="email" type="text" value="" size="30" maxlength="100" aria-describedby="email-notes" required="required"></p>
  <p class="comment-form-url"><label for="url">サイト</label> <input id="url" name="url" type="text" value="" size="30" maxlength="200"></p>
  <p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes"> <label for="wp-comment-cookies-consent">次回のコメントで使用するためブラウザーに自分の名前、メールアドレス、サイトを保存する。</label></p>
  <p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="コメントを送信"> <input type="hidden" name="comment_post_ID" value="1824" id="comment_post_ID">
    <input type="hidden" name="comment_parent" id="comment_parent" value="0">
  </p>
  <p style="display: none !important;" class="akismet-fields-container" data-prefix="ak_"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js"
      value="1719969306580">
    <script>
      document.getElementById("ak_js_1").setAttribute("value", (new Date()).getTime());
    </script>
  </p>
</form>

GET https://earthweblog.com/

<form class="search-box input-box" method="get" action="https://earthweblog.com/">
  <input type="text" placeholder="サイト内を検索" name="s" class="search-edit" aria-label="input" value="">
  <button type="submit" class="search-submit" aria-label="button"><span class="fa fa-search" aria-hidden="true"></span></button>
</form>

GET https://earthweblog.com/

<form class="search-box input-box" method="get" action="https://earthweblog.com/">
  <input type="text" placeholder="サイト内を検索" name="s" class="search-edit" aria-label="input" value="">
  <button type="submit" class="search-submit" aria-label="button"><span class="fa fa-search" aria-hidden="true"></span></button>
</form>

GET https://earthweblog.com/

<form class="search-box input-box" method="get" action="https://earthweblog.com/">
  <input type="text" placeholder="サイト内を検索" name="s" class="search-edit" aria-label="input" value="">
  <button type="submit" class="search-submit" aria-label="button"><span class="fa fa-search" aria-hidden="true"></span></button>
</form>

Text Content

Warning: strpos() expects parameter 1 to be string, array given in
/home/planetx01/earthweblog.com/public_html/wp-includes/blocks.php on line 20

Warning: strpos() expects parameter 1 to be string, array given in
/home/planetx01/earthweblog.com/public_html/wp-includes/blocks.php on line 20

Warning: strpos() expects parameter 1 to be string, array given in
/home/planetx01/earthweblog.com/public_html/wp-includes/blocks.php on line 20
telnetウイルステストmail添付ファイル | アスログ
アスログ
明日につながるログを ~earthweblog.com~



TELNETウイルステストMAIL添付ファイル

パソコン
Twitter Facebook はてブ Pocket LINE コピー
2020.05.16 2020.03.24

#mail.server.example.comにあるsmtpサーバを用いてメールを送信する例

telnet mail.server.example.com 25

#クライアントをメールサーバに認識させる
#(メールサーバにログインしている場合helo local)

helo mail.server.example.com

#送付元メールアドレスを入力

mail from: test@example.com

#送付先メールアドレスを入力(複数宛先の場合は、コレを繰り返す)

rcpt to:mail_server@example.com

#メール内容送信開始

data

#件名を入力

subject: TEST_Mail

#メール本文を入力

Hello! This is TEST Mail
Thank you.

#本文入力後“.”ドットを入力

.

#閉じる

quit

#メールがキューに溜まっていないか確認

mailq

目次
 1. 添付
 2. mailコマンドで添付
 3. Windowsで大容量ファイル作成
 4. Windowsで作成したテストファイルをlinuxにアップロード


添付

#メール本文の後に以下を入力すると“hogehogehogehoge”を添付ファイル“test_mail.txt”で送るという意味になります。

MIME-Version: 1.0
Content-Type: text/plain; name=test_mail.txt 
hogehogehogehoge

#メール本文の後に以下を入力するとeicar.comを添付することになる。

MIME-Version: 1.0
Content-Type: application/octet-stream; name="eicar.com"
Content-Transfer-Encoding: base64

WDVPIVAlQEFQWzRcUFpYNTQoUF4pN0NDKTd9JEVJQ0FSLVNUQU5EQVJELUFOVElWSVJVUy1URVNULUZJTEUhJEgrSCo=

#メール本文の後に以下を入力すると“hogehogehogehoge”を添付ファイル“test_mail.zip”で送るという意味になります。

MIME-Version: 1.0
Content-Type: application/zip; name=test_mail.zip
hogehogehogehoge

Content-Type一覧と拡張子
Content-Type種類拡張子text/plainテキストファイル.txttext/csvcsvファイル.csvapplication/mswordwordファイル(office
2007より過去).docapplication/vnd
earthweblog.com


MAILコマンドで添付

#zipファイルを添付して送付する場合

#添付ファイルのあるディレクトリに移動

mail -a test.zip testexample.com

#複数ファイル添付する場合

mail -a test.zip -a test.txt testexample.com


WINDOWSで大容量ファイル作成

#コマンドプロンプトでファイル作成ディレクトリに移動する

#例)

cd C:\Users\Desktop\TEST_File

#fsutil file createnew <ファイル名> <サイズ>
#※数値はKB

fsutil file createnew testfile 10485760


WINDOWSで作成したテストファイルをLINUXにアップロード

 1. TeraTermをダウンロード・インストール
 2. TeraTermで対象linuxサーバにログイン
 3. TeraTermのメニューバーの[ファイル(F)]-[SSH SCP]を選択
 4. [TTSSH:Secure File Copy]ウィンドウの下部に、以下のように入力
 5. From:転送したいWindows上のファイル(フルパス)を入力
 6. To:保存したいlinux上のディレクトリ(フルパス)を入力
    ※linuxの現在地を確認するには”pwd”コマンドを入力
 7. [send]ボタンをクリック

※コマンドは自己責任でご実施ください。

パソコン
シェアする
Twitter Facebook はてブ Pocket LINE コピー
earthをフォローする

earth
アスログ


関連記事

パソコン


ワード(WORD)で透かしが選択できない場合の対処

書類作成等でワードを使用することは多いと思います。 以下のように「ユーザー設定の透かし」が選択できないなんてことがありませんか? 原因
レイアウトが変更されているためです。 意識的ではなくともタブのを選択し...

パソコン


WINDOWS端末でマトリックスごっご

コマンドプロンプトのプロパティを設定する 画面左下の「ここに入力して検索」に " cmd " を入力する。 コマンドプロンプトが表示されるので、をクリック。
以下の画面が表示されるのでを右クリックしをクリック。 ...
パソコン


LINUX疎通不可DEVICE ETH0 DOES NOT SEEM TO BE PRESENT, DELAYING INITIALIZATION対処

原因 仮想環境の複製や移動することにより発生することが多いようです。 対処
以下の方法で対処可能な場合がありますが、別の方法が必要な可能性もあります。1例として参考までに活用ください。 【1】eth0が存在しない事...
パソコン


ドメイン移管の必要期間と情報を踏まえた具体手順例

ドメイン移管とは?
レジストラを変更することを言います。レジストラとは、ドメインを管理している業者、会社。A社で取得したドメインをB社で管理してもらうようにすること。
ドメイン移管はどんなとき必要? ドメインを管理してい...
パソコン


HYPER-V環境でメモリリソースが足りない対処動的メモリ

サーバにログイン -を右クリック※仮想ゲストOSが起動している場合は、シャットダウンが必要。 -を選択 動的メモリを有効化
最小値、最大値を設定することで、デッドリソースを解放できるので、固定メモリで仮想ゲストOS...

パソコン


テレワークでウェブカメラ需要4倍に入手までの日数

休日中に知人とこんなやり取りがありました。
テレワーク・リモートワークの対応が増加した為、ウェブカメラの需要が高まっており、家電量販店はどこも品切れで入荷未定の状態です。 A...
新型コロナ(COVID-19)台湾の感染防止策

Content-Type一覧と拡張子


コメント

コメントを書き込む


コメントをどうぞ コメントをキャンセル

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

コメント

名前 *

メール *

サイト

次回のコメントで使用するためブラウザーに自分の名前、メールアドレス、サイトを保存する。



Δ

ホーム
パソコン


人気記事

逆から読むと意味が変わる文
2020.04.292020.10.31
ワード(Word)で透かしが選択できない場合の対処
2020.07.14
Hyper-V環境でメモリリソースが足りない対処動的メモリ
2020.03.262020.05.09
サイト上のダウンロードボタンを何度押しても効かない
2020.02.162020.05.15

GoogleDriveで文字化け対処と防ぐ方法
2020.04.242020.05.09


カテゴリ

 * ホーム
 * 新型コロナCOVID(コビット)-19情報まとめ
 * 旅行
 * 登山
 * 時事
 * パソコン
 * 仕事
 * 雑記
 * ブログ
 * よく飛ぶ紙飛行機素材まとめ


新着記事

デジタル一眼ミラーレスの購入と必要なモノ
2021.04.052021.04.06

ナンガの福袋やコラボ商品を手に入れる方法
2021.01.302021.01.31
iPhoneでYoutubeを視聴する際の小ネタ
2020.11.12
寝袋シュラフ日本のブランド3社比較早見表
2020.11.082020.11.19
登山の始め方と三種の神器
2020.10.312020.11.12



アーカイブ

アーカイブ 月を選択 2021年4月  (1) 2021年1月  (1) 2020年11月  (2) 2020年10月  (1) 2020年8月  (6)
2020年7月  (33) 2020年6月  (6) 2020年5月  (30) 2020年4月  (27) 2020年3月  (24) 2020年2月
 (36)


このサイトについて

日々生活している中での出来事、思ったことをいくつかのカテゴリに分けた備忘録。
私自身にとってはもちろん、誰かにとって何かのヒントになれば良いなと思います。
カテゴリ:旅行、登山、時事、パソコン、仕事など
サイト名の由来:地球を模したサイトでその記録(アースウェブログ) の略称 ” アスログ “
アスと明日をかけて ” 明日につながるログを ” キャッチコピーに。
日々の投稿ネタは、タネと見立てて、たくさん植えていきます。
そのタネがいつか目を出し大きく育てば良いなと思っています。
にほんブログ村



にほんブログ村



アスログ
Copyright © 2020-2024 アスログ All Rights Reserved.
   
 * ホーム
   
   
 * 検索
   
   
 * トップ
   
 * サイドバー
   
   
   人気記事
   
   逆から読むと意味が変わる文
   2020.04.292020.10.31
   ワード(Word)で透かしが選択できない場合の対処
   2020.07.14
   Hyper-V環境でメモリリソースが足りない対処動的メモリ
   2020.03.262020.05.09
   サイト上のダウンロードボタンを何度押しても効かない
   2020.02.162020.05.15
   GoogleDriveで文字化け対処と防ぐ方法
   2020.04.242020.05.09
   
   
   カテゴリ
   
    * ホーム
    * 新型コロナCOVID(コビット)-19情報まとめ
    * 旅行
    * 登山
    * 時事
    * パソコン
    * 仕事
    * 雑記
    * ブログ
    * よく飛ぶ紙飛行機素材まとめ
   
   
   新着記事
   
   デジタル一眼ミラーレスの購入と必要なモノ
   2021.04.052021.04.06
   ナンガの福袋やコラボ商品を手に入れる方法
   2021.01.302021.01.31
   iPhoneでYoutubeを視聴する際の小ネタ
   2020.11.12
   寝袋シュラフ日本のブランド3社比較早見表
   2020.11.082020.11.19
   登山の始め方と三種の神器
   2020.10.312020.11.12
   
   
   アーカイブ
   
   アーカイブ 月を選択 2021年4月  (1) 2021年1月  (1) 2020年11月  (2) 2020年10月  (1) 2020年8月  (6)
   2020年7月  (33) 2020年6月  (6) 2020年5月  (30) 2020年4月  (27) 2020年3月  (24) 2020年2月
    (36)
   
   
   このサイトについて
   
   日々生活している中での出来事、思ったことをいくつかのカテゴリに分けた備忘録。
   私自身にとってはもちろん、誰かにとって何かのヒントになれば良いなと思います。
   カテゴリ:旅行、登山、時事、パソコン、仕事など
   サイト名の由来:地球を模したサイトでその記録(アースウェブログ) の略称 ” アスログ “
   アスと明日をかけて ” 明日につながるログを ” キャッチコピーに。
   日々の投稿ネタは、タネと見立てて、たくさん植えていきます。
   そのタネがいつか目を出し大きく育てば良いなと思っています。
   にほんブログ村
   
   
   
   にほんブログ村
   
   
   


タイトルとURLをコピーしました



Fatal error: Uncaught Error: Call to undefined function
Smush\Core\Parser\str_contains() in
/home/planetx01/earthweblog.com/public_html/wp-content/plugins/wp-smushit/core/parser/class-parser.php:373
Stack trace: #0
/home/planetx01/earthweblog.com/public_html/wp-content/plugins/wp-smushit/core/parser/class-parser.php(358):
Smush\Core\Parser\Parser->sanitize_value('property') #1
/home/planetx01/earthweblog.com/public_html/wp-content/plugins/wp-smushit/core/parser/class-parser.php(157):
Smush\Core\Parser\Parser->is_safe('property') #2
/home/planetx01/earthweblog.com/public_html/wp-content/plugins/wp-smushit/core/parser/class-parser.php(120):
Smush\Core\Parser\Parser->get_element_attributes('<meta property=...',
'https://earthwe...') #3
/home/planetx01/earthweblog.com/public_html/wp-content/plugins/wp-smushit/core/parser/class-page-parser.php(35):
Smush\Core\Parser\Parser->get_elements_with_image_attributes('<!doctype
html>...', 'https://earthwe...') #4
/home/planetx01/earthweblog.com/public_html/wp-content/plugins/wp-smushit in
/home/planetx01/earthweblog.com/public_html/wp-content/plugins/wp-smushit/core/parser/class-parser.php
on line 373