JavaGuySoho / SP-Net4

0 stars 0 forks source link

SoftBank Payment Service #3

Open JavaGuySoho opened 4 years ago

JavaGuySoho commented 4 years ago

本番 honban 仮本番 karihonban 検証 kenshou 開発 kaihatsu

JavaGuySoho commented 4 years ago

python roomaji.py 本番 本番 honban

python roomaji.py 検証 検証 kenshou

python roomaji.py 開発 開発 kaihatsu

JavaGuySoho commented 4 years ago

curl -F 'file=@photo.png;type=image/png' https://google.com/profile

curl -G -d 'q=kitties' -d 'count=20' https://google.com/search

curl -G --data-urlencode 'comment=hello world' https://www.example.com

JavaGuySoho commented 4 years ago

curl --data "pay_method=credit&merchant_id=71802&service_id=001&cust_code=100000039625&sps_cust_no=&sps_payment_no=&terminal_type=0&success_url=CreditWeb/Aspx/PC/CRW018.aspx&cancel_url=CreditWeb/Aspx/PC/CRW018.aspx?free2=1&res_result=NG&error_url=CreditWeb/Aspx/PC/CRW018.aspx?free2=1&res_result=NG&pagecon_url=CreditWeb/Aspx/PC/CRW017.aspx&free1=fLdzTbwNjFfYOFSKMn6&free2=1&free3=DqyHWCpwcI75KRRFe43aRe-0LK1rDhpRGtAVEwNOXzmUxIOMrSslXOvJZNmv8SWGf0Q&request_date=20200628161213&limit_second=600&sps_hashcode=0123456789ABCDEF" https://fep.sps-system.com/f04/FepPayInfoReceive.do

JavaGuySoho commented 4 years ago

wget --file-user=USERNAME --file-password=PASSWORD url

JavaGuySoho commented 4 years ago

wget -q -O - --post-data="pay_method=credit&merchant_id=71802&service_id=001&cust_code=100000039625&sps_cust_no=&sps_payment_no=&terminal_type=0&success_url=CreditWeb/Aspx/PC/CRW018.aspx&cancel_url=CreditWeb/Aspx/PC/CRW018.aspx?free2=1&res_result=NG&error_url=CreditWeb/Aspx/PC/CRW018.aspx?free2=1&res_result=NG&pagecon_url=CreditWeb/Aspx/PC/CRW017.aspx&free1=fLdzTbwNjFfYOFSKMn6&free2=1&free3=DqyHWCpwcI75KRRFe43aRe-0LK1rDhpRGtAVEwNOXzmUxIOMrSslXOvJZNmv8SWGf0Q&request_date=20200628161213&limit_second=600&sps_hashcode=0123456789ABCDEF" https://fep.sps-system.com/f04/FepPayInfoReceive.do

JavaGuySoho commented 4 years ago

@ECHO OFF :: ========================================================================= @SETLOCAL ENABLEDELAYEDEXPANSION :: ========================================================================= SET SBPS_SERVICE=https://stbfep.sps-system.com/Extra/PayRequestAction.do

SET ALPHA[0].Name=pay_method SET ALPHA[0].Value=credit SET ALPHA[1].Name=merchant_id SET ALPHA[1].Value=71802 SET ALPHA[2].Name=service_id SET ALPHA[2].Value=001 SET ALPHA[3].Name=cust_code SET ALPHA[3].Value=100000039625 SET ALPHA[4].Name=sps_cust_no SET ALPHA[4].Value= SET ALPHA[5].Name=sps_payment_no SET ALPHA[5].Value= SET ALPHA[6].Name=terminal_type SET ALPHA[6].Value=0 SET ALPHA[7].Name=success_url SET ALPHA[7].Value=CreditWeb/Aspx/PC/CRW018.aspx SET ALPHA[8].Name=cancel_url SET ALPHA[8].Value=CreditWeb/Aspx/PC/CRW018.aspx?free2=1^&res_result=NG^& SET ALPHA[9].Name=error_url SET ALPHA[9].Value=CreditWeb/Aspx/PC/CRW018.aspx?free2=1^&res_result=NG^& SET ALPHA[10].Name=pagecon_url SET ALPHA[10].Value=CreditWeb/Aspx/PC/CRW017.aspx& SET ALPHA[11].Name=free1 SET ALPHA[11].Value=fLdzTbwNjFfYOFSKMn6& SET ALPHA[12].Name=free2 SET ALPHA[12].Value=1 SET ALPHA[13].Name=free3 SET ALPHA[13].Value=DqyHWCpwcI75KRRFe43aRe-0LK1rDhpRGtAVEwNOXzmUxIOMrSslXOvJZNmv8SWGf0Q& SET ALPHA[14].Name=request_date SET ALPHA[14].Value=%DATE:~0,4%%DATE:~5,2%%DATE:~8,2%%TIME:~0,2%%TIME:~3,2%%TIME:~6,2% SET ALPHA[15].Name=limit_second SET ALPHA[15].Value=600 SET ALPHA[16].Name=hash_key SET ALPHA[16].Value=730ad10ff5a22758e7b72f86e3b589c0223d977c

SET ALPHA_LENGTH=17 :: ========================================================================= SET ALPHA_INDEX=0 SET HASH_LIST= SET POST_LIST=

ECHO. ECHO SoftBank Payment Service : %SBPS_SERVICE% ECHO. :LoopStart IF %ALPHA_INDEX% EQU %ALPHA_LENGTH% GOTO :LoopEnd

SET ALPHA_ONE.Name= SET ALPHA_ONE.Value=

FOR /F "usebackq delims==. tokens=1-7" %%I IN (SET ALPHA[%ALPHA_INDEX%]) DO ( SET ALPHA_ONE.%%J=%%K%%L%%M%%N )

SET ARGUMENTS=!ALPHA_ONE.Name!=!ALPHA_ONE.Value! ECHO POST Data : !ARGUMENTS!

SET HASH_LIST=!HASH_LIST!!ALPHA_ONE.Value! SET POST_LIST=!POST_LIST!!ARGUMENTS!^&

SET /A ALPHA_INDEX=%ALPHA_INDEX% + 1

GOTO LoopStart

:LoopEnd :: ========================================================================= ECHO !HASH_LIST! > out\body.dat CertUtil -hashfile out\body.dat SHA1 | findstr -v SHA | findstr -v CertUtil > check.sum SET /P HASH_LIST=<check.sum SET POST_LIST=!POST_LIST!sps_hashcode=!HASH_LIST!^& :: ========================================================================= @ECHO. @TYPE out\body.dat @ECHO. ECHO HASH Data : sps_hashcode=!HASH_LIST! :: ========================================================================= @ECHO. @ECHO !POST_LIST! :: =========================================================================

ECHO. SET SBPS_CMD=wget -q -O - --post-data="!POST_LIST!" !SBPS_SERVICE! REM !SBPS_CMD! > out\sbps.html @REM type out\sbps.html :: ========================================================================= @ENDLOCAL @ECHO ON

JavaGuySoho commented 4 years ago

SET SYSTEM_TIME_STAMP=%DATE:~0,4%%DATE:~5,2%%DATE:~8,2%%TIME:~0,2%%TIME:~3,2%%TIME:~6,2%

JavaGuySoho commented 4 years ago
JavaGuySoho commented 4 years ago

image

JavaGuySoho commented 4 years ago

M_ENV

JavaGuySoho commented 4 years ago

-rwxrwx---+ 1 Administrators 55829 1317 6月 9 17:54 SoftBank.aspx -rwxrwx---+ 1 Administrators 55829 2207 6月 9 17:54 SoftBank.aspx.cs -rwxrwx---+ 1 Administrators 55829 1319 6月 9 17:54 SoftBank2.aspx -rwxrwx---+ 1 Administrators 55829 1699 6月 9 17:54 SoftBank2.aspx.cs

  1. diff SoftBank.aspx SoftBank2.aspx 1c1 <%@ Page Title="" Language="C#" MasterPageFile="~/Aspx/MasterPage/CRWM01.master" AutoEventWireup="true" CodeFile="SoftBank.aspx.cs" Inherits="Aspx_PC_SoftBank" %>

    <%@ Page Title="" Language="C#" MasterPageFile="~/Aspx/MasterPage/CRWM01.master" AutoEventWireup="true" CodeFile="SoftBank2.aspx.cs" Inherits="Aspx_PC_SoftBank2" %>

  2. diff SoftBank.aspx.cs SoftBank2.aspx.cs 34c34 public partial class Aspx_PC_SoftBank : MyBaseController

    public partial class Aspx_PC_SoftBank2 : MyBaseController 54,61c54 < SqlConnection objSqlConnection = new SqlConnection(GetConfigParameter.GetConnectionString("ConnectionString_SQL")); < objSqlConnection.Open(); < string str = "UPDATE T_LOGINACCOUNT SET CRTOROKUKEKKA = 'OK' WHERE ENDUSRID = '" + this.UserInfo.EndUserId +"'"; < SqlCommand objSqlCommand = new SqlCommand(str,objSqlConnection); < objSqlCommand.ExecuteNonQuery(); < objSqlConnection.Close(); < < Response.Redirect("CRW018.aspx?" + Const.CARD_SYORI_KBN_KEY_FROM_SOFTBANK + "=1&" + Const.SYORI_RESULT_KEY_FROM_SOFTBANK + "=OK");

     Response.Redirect("CRW018.aspx?free2=2&res_result=NG");
JavaGuySoho commented 4 years ago

「クレジットカード決済を使用するカード情報を登録する(ソフトバンク・ペイメント・サービス株式会社のページ移動します)」

「カード情報を変更する(ソフトバンク・ペイメント・サービス株式会社のページ移動します)」

JavaGuySoho commented 4 years ago

chcp 437 英文 chcp 932 日文 chcp 936 简体中文 chcp 949 韩文 chcp 950 繁体中文 chcp 65001 UTF-8

[HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe] CodePage=dword:000003a4

[HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe] CodePage=dword:000003a8

JavaGuySoho commented 4 years ago

CertUtil -hashfile hello.txt CertUtil -hashfile hello.txt SHA1 CertUtil -hashfile hello.txt MD5 CertUtil -hashfile hello.txt SHA256 CertUtil -hashfile hello.txt SHA384 CertUtil -hashfile hello.txt SHA512

JavaGuySoho commented 4 years ago

CertUtil -hashfile out\hash.list SHA1 hash of out\hash.list: 624aa959e1237e9d9c0f3a9405f852a02a5269ac CertUtil: -hashfile command completed successfully.

CertUtil -hashfile out\hash.list SHA1 SHA1 hash of out\hash.list: 624aa959e1237e9d9c0f3a9405f852a02a5269ac CertUtil: -hashfile command completed successfully.

CertUtil -hashfile out\hash.list SHA1 | findstr -v SHA | findstr -v CertUtil 624aa959e1237e9d9c0f3a9405f852a02a5269ac

JavaGuySoho commented 4 years ago

ECHO !HASH_LIST! > out\hash.list

CertUtil -hashfile out\hash.list SHA1 | findstr -v SHA | findstr -v CertUtil > list.hash

SET /P HASH=<list.hash ECHO %HASH%

JavaGuySoho commented 4 years ago

@ECHO OFF :: ========================================================================= SET ALPHA[0]=D:\Inetpub\wwwroot\CreditWeb SET ALPHA[1]=D:\Inetpub\wwwroot\search SET ALPHA[2]=D:\creweb SET ALPHA[3]=D:\creweb\applog SET ALPHA[4]=D:\creweb\conf SET ALPHA[5]=D:\creweb\temp SET ALPHA[6]=D:\creweb\tool\smail SET ALPHA[7]=D:\search SET ALPHA[8]=D:\search\applog SET ALPHA[9]=D:\search\conf SET ALPHA[10]=D:\Inetpub\wwwroot\searchinfo\web.config SET ALPHA[11]=D:\Inetpub\wwwroot\searchinfo\app.config SET ALPHA[12]=D:\Inetpub\wwwroot\CreditWeb\web.config SET ALPHA[13]=D:\Inetpub\wwwroot\CreditWeb\app.config

SET ALPHA_LENGTH=14 :: ========================================================================= SET ALPHA_INDEX=0

ECHO. :LoopStart IF %ALPHA_INDEX% EQU %ALPHA_LENGTH% GOTO :LoopEnd

SET ALPHA_CMD=

FOR /F "usebackq delims== tokens=1-2" %%i IN (SET ALPHA[%ALPHA_INDEX%]) DO ( SET ALPHA_CMD="DIR "%%j @DIR %%j IF errorlevel 1 (ECHO ERROR %%j missing...) )

SET /A ALPHA_INDEX=%ALPHA_INDEX% + 1

GOTO LoopStart

:LoopEnd ECHO. :: ========================================================================= @ECHO ON

JavaGuySoho commented 4 years ago

staticContent remove fileExtension=".json" mimeMap fileExtension=".json" mimeType="application/octet-stream" staticContent

JavaGuySoho commented 4 years ago

staticContent remove fileExtension=".json" mimeMap fileExtension=".json" mimeType="application/x-javascript" staticContent

JavaGuySoho commented 4 years ago

< i class="ion ion-loading-a" /i >

JavaGuySoho commented 4 years ago

https://ionicframework.com/docs/api/loading

JavaGuySoho commented 4 years ago

:: ========================================================================= ionic start wxSystem tabs

:: run ionic system cd wxSystem ionic serve

:: :: build zip :: ionic build :: =========================================================================

JavaGuySoho commented 4 years ago

od src.txt -t x1

0000000 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 0000020 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 0000040 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 0000060 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 0000100 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 0000120 0a 0000121

JavaGuySoho commented 4 years ago

od src.txt -t x1 -A n

30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 30 31 32 33 34 35 36 37 38 39 0a

JavaGuySoho commented 4 years ago

ipconfig /all | find /i "ipv4"

JavaGuySoho commented 4 years ago

@ECHO OFF :: ========================================================================= @SETLOCAL ENABLEDELAYEDEXPANSION :: =========================================================================

:: ipconfig /all |find /i "ipv4" :: for /F "tokens=2 delims=:(" %%i in ('ipconfig /all ^|find /i "ipv4" ') do ( set myip=%%i ) :: echo %myip%

JavaGuySoho commented 4 years ago

@ECHO OFF :: ========================================================================= @SETLOCAL ENABLEDELAYEDEXPANSION :: =========================================================================

:: type check.sum | hexdump SET DATA= FOR /F "tokens=2,* delims= " %%I IN ('TYPE check.sum ^| HEXDUMP') DO SET DATA=%%I %%J ECHO %DATA%

JavaGuySoho commented 4 years ago

srvany.exe

Microsoft Windows Resource Kits工具集的一个实用小工具,用于将EXE程序作为Windows服务运行。srvany是其注册程序的服务外壳,我们可以通过它让我们的程序以SYSTEM账户启动,或者实现随机器启动而自启动,也可以隐藏不必要的窗口,比如说控制台窗口等等

JavaGuySoho commented 4 years ago

@C: @CD C:\TODO

@SET service_path=C:\TODO @SET service_name=GD3Init @SET service_desc="GD3 Initializing Service" @SET prog_path=C:\TODO @SET prog_name=init_gd3.cmd

@NET STOP %service_name% @SC DELETE %service_name% @SC CREATE %service_name% binpath= %service_path%\srvany.exe start= auto displayname= "GD3Init" @SC DESCRIPTION %service_name% %service_desc%

@REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\%service_name%\Parameters" /v Application /t REG_SZ /d "%prog_path%\%prog_name%" /f @REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\%service_name%\Parameters" /v AppDirectory /t REG_SZ /d "%prog_path%" /f

@REM ######################################################################## @REM # @REM # HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/ @REM # IBMWAS61Service - shengjiao04Node02 @REM # DependOnService REG_SZ GD3Init @REM # @REM ########################################################################

@PAUSE

JavaGuySoho commented 4 years ago

https://www.runoob.com/try/try2.php?filename=bootstrap3-navbar-compalignment

JavaGuySoho commented 4 years ago

https://www.cnblogs.com/dreamblog/p/10219175.html

JavaGuySoho commented 4 years ago

https://ajax.googleapis.com/ajax/libs/prototype/1.7.2.0/prototype.js

JavaGuySoho commented 4 years ago

from numba import autojit @autojit

JavaGuySoho commented 3 years ago

PS1='$PWD>' alias cls=clear alias lf='ls -F' alias l='ls -l'

JavaGuySoho commented 3 years ago

ls *.py | awk '{printf "cat "$1" | col -b > "$1" \n"}' cat common.py | col -b > common.py cat main.py | col -b > main.py cat webkit.py | col -b > webkit.py cat XCommand.py | col -b > XCommand.py cat XConfig.py | col -b > XConfig.py cat XDateTime.py | col -b > XDateTime.py cat XGlobal.py | col -b > XGlobal.py cat XImage.py | col -b > XImage.py cat XInstruction.py | col -b > XInstruction.py cat XObject.py | col -b > XObject.py cat XPicture.py | col -b > XPicture.py cat XPlot.py | col -b > XPlot.py cat XPresentation.py | col -b > XPresentation.py cat XSafety.py | col -b > XSafety.py cat XSerial.py | col -b > XSerial.py cat XService.py | col -b > XService.py cat XShared.py | col -b > XShared.py cat XSqlite.py | col -b > XSqlite.py cat XString.py | col -b > XString.py cat XSystem.py | col -b > XSystem.py cat XWindow.py | col -b > XWindow.py

JavaGuySoho commented 3 years ago

cat ../master/common.py | col -b > common.py cat ../master/main.py | col -b > main.py cat ../master/webkit.py | col -b > webkit.py cat ../master/XCommand.py | col -b > XCommand.py cat ../master/XConfig.py | col -b > XConfig.py cat ../master/XDateTime.py | col -b > XDateTime.py cat ../master/XGlobal.py | col -b > XGlobal.py cat ../master/XImage.py | col -b > XImage.py cat ../master/XInstruction.py | col -b > XInstruction.py cat ../master/XObject.py | col -b > XObject.py cat ../master/XPicture.py | col -b > XPicture.py cat ../master/XPlot.py | col -b > XPlot.py cat ../master/XPresentation.py | col -b > XPresentation.py cat ../master/XSafety.py | col -b > XSafety.py cat ../master/XSerial.py | col -b > XSerial.py cat ../master/XService.py | col -b > XService.py cat ../master/XShared.py | col -b > XShared.py cat ../master/XSqlite.py | col -b > XSqlite.py cat ../master/XString.py | col -b > XString.py cat ../master/XSystem.py | col -b > XSystem.py cat ../master/XWindow.py | col -b > XWindow.py

JavaGuySoho commented 3 years ago

@ECHO OFF :: ========================================================================= @SETLOCAL ENABLEDELAYEDEXPANSION :: ========================================================================= SET SBPS_SERVICE=https://stbfep.sps-system.com/Extra/PayRequestAction.do

SET TIK[0]=pay_method SET TIK[1]=merchant_id SET TIK[2]=service_id SET TIK[3]=cust_code SET TIK[4]=sps_cust_no SET TIK[5]=sps_payment_no SET TIK[6]=terminal_type SET TIK[7]=success_url SET TIK[8]=cancel_url SET TIK[9]=error_url SET TIK[10]=pagecon_url SET TIK[11]=free1 SET TIK[12]=free2 SET TIK[13]=free3 SET TIK[14]=request_date SET TIK[15]=limit_second SET TIK[16]=hash_key

SET TOK[0]=credit SET TOK[1]=71802 SET TOK[2]=001 SET TOK[3]=100000039625 SET TOK[4]= SET TOK[5]= SET TOK[6]=0 SET TOK[7]=CreditWeb/Aspx/PC/CRW018.aspx SET TOK[8]=CreditWeb/Aspx/PC/CRW018.aspx?free2=1^&res_result=NG^& SET TOK[9]=CreditWeb/Aspx/PC/CRW018.aspx?free2=1^&res_result=NG^& SET TOK[10]=CreditWeb/Aspx/PC/CRW017^.aspx& SET TOK[11]=fLdzTbwNjFfYOFSKMn6& SET TOK[12]=1 SET TOK[13]=DqyHWCpwcI75KRRFe43aRe-0LK1rDhpRGtAVEwNOXzmUxIOMrSslXOvJZNmv8SWGf0Q& SET TOK[14]=%DATE:~0,4%%DATE:~5,2%%DATE:~8,2%%TIME:~0,2%%TIME:~3,2%%TIME:~6,2% SET TOK[15]=600 SET TOK[16]=730ad10ff5a22758e7b72f86e3b589c0223d977c :: ========================================================================= SET TIK_TOK_LENGTH=16 SET TIK_TOK_INDEX=0

SET HASH_LIST= SET POST_LIST=

ECHO. ECHO SoftBank Payment Service : %SBPS_SERVICE% ECHO. :LoopStart IF %TIK_TOK_INDEX% EQU %TIK_TOK_LENGTH% GOTO :LoopEnd

SET TIK_ONE=!TIK[%TIK_TOK_INDEX%]! SET TOK_ONE=!TOK[%TIK_TOK_INDEX%]!

SET ARGUMENTS=!TIK_ONE!=!TOK_ONE!

SET HASH_LIST=!HASH_LIST!!TOK_ONE! SET POST_LIST=!POST_LIST!!TIK_ONE!=!TOK_ONE!^&

ECHO !ARGUMENTS!

SET /A TIK_TOK_INDEX=%TIK_TOK_INDEX% + 1 GOTO LoopStart :LoopEnd @SET HASH_BODY=!HASH_LIST! @SET "HASH_LIST=!HASH_LIST: =!" :: ========================================================================= @SET /P=!HASH_LIST!>out\body.dat @CertUtil -hashfile out\body.dat SHA1 | findstr -v SHA | findstr -v CertUtil > check.sum @SET /P HASH_LIST=<check.sum :: ========================================================================= @SET HASH_CODE= FOR /F "tokens=2,* delims= " %%I IN ('HEXDUMP check.sum') DO ( SET HASH_CODE=!HASH_CODE!%%I %%J ) SET "HASH_CODE=%HASH_CODE: =%" SET "HASH_CODE=%HASH_CODE:~0,80%" :: ========================================================================= @SET POST_LIST=!POST_LIST!sps_hashcode=!HASH_CODE!^& :: ========================================================================= @ECHO. @ECHO. @ECHO CHACK_SUM_BODY : !HASH_BODY! @ECHO. @ECHO ============== CertUtil SHA1 ==============^> @ECHO. @ECHO CHACK_SUM : !HASH_LIST! @ECHO. @ECHO ============== SPS HASH CODE ==============^> @ECHO. @ECHO sps_hashcode=!HASH_CODE! @ECHO. :: =========================================================================

@ECHO. @SET SBPS_CMD=wget -q -O - --post-data="!POST_LIST!" !SBPS_SERVICE! @ECHO !SBPS_CMD! @REM !SBPS_CMD! > out\sbps.html @REM type out\sbps.html :: ========================================================================= @ENDLOCAL @ECHO ON

JavaGuySoho commented 3 years ago

SoftBank Payment Service : https://stbfep.sps-system.com/Extra/PayRequestAction.do

pay_method=credit merchant_id=71802 service_id=001 cust_code=100000039625 sps_cust_no= sps_payment_no= terminal_type=0 success_url=CreditWeb/Aspx/PC/CRW018.aspx cancel_url=CreditWeb/Aspx/PC/CRW018.aspx?free2=1&res_result=NG& error_url=CreditWeb/Aspx/PC/CRW018.aspx?free2=1&res_result=NG& pagecon_url=CreditWeb/Aspx/PC/CRW017.aspx free1=fLdzTbwNjFfYOFSKMn6 free2=1 free3=DqyHWCpwcI75KRRFe43aRe-0LK1rDhpRGtAVEwNOXzmUxIOMrSslXOvJZNmv8SWGf0Q request_date=20200713140338 limit_second=600

CHACK_SUM_BODY : credit718020011000000396250CreditWeb/Aspx/PC/CRW018.aspxCreditWeb/Aspx/PC/CRW018.aspx?free2=1&res_result=NG&CreditWeb/Aspx/PC/CRW018.aspx?free2=1&res_result=NG&CreditWeb/Aspx/PC/CRW017.aspxfLdzTbwNjFfYOFSKMn61DqyHWCpwcI75KRRFe43aRe-0LK1rDhpRGtAVEwNOXzmUxIOMrSslXOvJZNmv8SWGf0Q20200713140338600

============== CertUtil SHA1 ==============>

CHACK_SUM : 9fc12250da978ca53127277c56a824b28e4423d7

============== SPS HASH CODE ==============>

sps_hashcode=39666331323235306461393738636135333132373237376335366138323462323865343432336437

wget -q -O - --post-data="pay_method=credit&merchant_id=71802&service_id=001&cust_code=100000039625&sps_cust_no=&sps_payment_no=&terminal_type=0&success_url=CreditWeb/Aspx/PC/CRW018.aspx&cancel_url=CreditWeb/Aspx/PC/CRW018.aspx?free2=1&res_result=NG&&error_url=CreditWeb/Aspx/PC/CRW018.aspx?free2=1&res_result=NG&&pagecon_url=CreditWeb/Aspx/PC/CRW017.aspx&free1=fLdzTbwNjFfYOFSKMn6&free2=1&free3=DqyHWCpwcI75KRRFe43aRe-0LK1rDhpRGtAVEwNOXzmUxIOMrSslXOvJZNmv8SWGf0Q&request_date=20200713140338&limit_second=600&sps_hashcode=39666331323235306461393738636135333132373237376335366138323462323865343432336437&" https://stbfep.sps-system.com/Extra/PayRequestAction.do

JavaGuySoho commented 3 years ago

sed '1,200p' log/runtime.log

tail -n200 log/runtime.log

JavaGuySoho commented 3 years ago

:: ========================================================================= osql -S 172.29.231.61 -U gd-sa -P "$$SPnet4%%SQLSV!" 1> 2> sp_password '$$SPnet4%%SQLSV!', '&&SPnet4!SQLSV$', 'gd-sa' 3> go 1> 2> quit

osql -S 172.29.231.61 -U gd-sa -P "&&SPnet4!SQLSV$" :: =========================================================================

JavaGuySoho commented 3 years ago

:: ========================================================================= SET osqluser=gd-sa SET osqlpassword=$$SPnet4%%SQLSV! echo %osqlpassword% $$SPnet4%%SQLSV!

osql -S 172.29.231.61 1> 2> SELECT COUNT(*) FROM SEARCH..hanbaiten_wk 3> go

    3219

(1 row affected) 1> 2> 3> quit :: =========================================================================

JavaGuySoho commented 3 years ago

set DB_USER=gd-sa set DB_PASS=$$SPnet4%%SQLSV! osql -S 172.29.231.61 -U %DB_USER% -P %DB_PASS%

set DB_USER=gd-sa set DB_PASS="$$SPnet4%%SQLSV!" osql -S 172.29.231.61 -U %DB_USER% -P %DB_PASS%

set DB_USER=gd-sa set DB_PASS="$$SPnet4%%%%SQLSV!" osql -S 172.29.231.61 -U %DB_USER% -P %DB_PASS%

JavaGuySoho commented 3 years ago

VS depends Before VS2008

http://www.dependencywalker.com/

https://github.com/lucasg/Dependencies/releases

JavaGuySoho commented 3 years ago

import matplotlib matplotlib.use('Agg') from matplotlib import pyplot

JavaGuySoho commented 3 years ago

https://matplotlib.org/api/matplotlib_configuration_api.html?highlight=use#matplotlib.use

JavaGuySoho commented 3 years ago

Traceback (most recent call last): File "D:\ProgramData\Anaconda3\lib\tkinter__init.py", line 3504, in del__ self.tk.call('image', 'delete', self.name) RuntimeError: main thread is not in main loop Tcl_AsyncDelete: async handler deleted by the wrong thread

JavaGuySoho commented 3 years ago

vi ~/.virc

set number set ts=4 syntax on

JavaGuySoho commented 3 years ago

vi /etc/vimrc

set number set ts=4 syntax on

JavaGuySoho commented 3 years ago

渲染器 文件类型 描述


AGG png 光栅图 – 使用 Anti-Grain Geometry 高质量渲染引擎 PS ps eps 矢量图 – Postscript 输出 PDF pdf 矢量图 – 可携带格式 SVG svg 矢量图 – 可伸缩矢量图形 Cairo png ps pdf svg ... 矢量图 – Cairo图 GDK png jpg tiff ... 光栅图 – gimp


JavaGuySoho commented 3 years ago

https://visualstudio.microsoft.com/ja/vs/older-downloads/