Full text search for "sw"


Search BackLinks only
Display context of search results
Case-sensitive searching
  • MoniWikiPo . . . . 24 matches
         msgid "Password"
         msgid "Password:"
         msgid "Your new password is confirmed successfully"
         msgid "Invalid password !"
         msgid "E-mail new password"
         msgid "New password confirmation"
         msgid "Please confirm your new password"
         msgid "Your new password is %s"
         msgid "Please change your password later"
         msgid "New password is sent to your e-mail !"
         msgid "too short password!"
         msgid "mismatch password!"
         msgid "not acceptable character found in the password!"
         msgid "Your password is too simple to use as a password !"
         msgid "Your initial password is %s"
         msgid "mismatch password !"
         msgid "Password is not changed !"
         msgid "Password is changed !"
         msgid "Password is too simple to use as a password !"
         msgid "Please enter the valid password"
  • CountingClosedPolygons . . . . 8 matches
          var answer = 0
          answer++
          answer++
          return answer
          var answer = 0
          answer++
          answer++
          return answer
  • EclipseJavaCodeStyleFormatter . . . . 8 matches
         <setting id="org.eclipse.jdt.core.formatter.brace_position_for_switch" value="end_of_line"/>
         <setting id="org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases" value="true"/>
         <setting id="org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch" value="false"/>
         <setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch" value="do not insert"/>
         <setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch" value="do not insert"/>
         <setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch" value="do not insert"/>
         <setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch" value="do not insert"/>
  • OsxKeychain . . . . 8 matches
         security add-generic-password -scoxxx.net -a${myId} -w${PWD}"
         security add-generic-password -U -scoxxx.net -a${myId} -w${PWD}"
         # -w specify password
         security find-generic-password -s awscn.ldap.user ~/Library/Keychains/login.keychain-db"
         security find-generic-password -sawscn.ldap.user -g"
         security find-generic-password -sawscn.ldap.user -aokok -w"
         # -w display password only
         # -g display password
  • jEdit . . . . 8 matches
         options.pmd.rules.DefaultLabelNotLastInSwitchStmt=true
         firewall.password=
         sidekick.showStatusWindow=false
         mode.java.sidekick.showStatusWindow.label=false
         encoding.opt-out.x-mswin-936=true
         options.pmd.rules.NonCaseLabelInSwitchStatement=true
         sidekick.showStatusWindow.label=false
         mode.xml.sidekick.showStatusWindow.label=true
         lookAndFeel=javax.swing.plaf.metal.MetalLookAndFeel
         plugin-blacklist.jswat-parser.jar=false
         jswatplugin.extendedState=6
         plugin-blacklist.jswat.jar=false
         vfs.ftp.storePassword=true
         plugin-blacklist.pmd-swingui-0.1.jar=false
         options.pmd.rules.EmptySwitchStatements=true
         options.pmd.rules.SwitchStmtsShouldHaveDefault=true
         options.pmd.rules.SwitchDensity=true
  • Keychron K9 Pro . . . . 7 matches
          * physical switch to switch between 0 <-> 1
          * fn key to switch between 0 <-> 2 or 1 <-> 3
          * fn1 key to switch between 0 <-> 4 or 1 <-> 4
          1. plug in the power cable and switch to cable mode
          4. switch off, remove space bar, find reset button
          * hold reset key first, then switch to cable mode and release reset key
  • 아파치디렉토리사용자인증설정하기 . . . . 7 matches
          *passwd파일 만들기
         htpasswd -c htpasswd_file user_id
          AuthUserFile /home/in.xxxxnet.net/passwd/htpasswd
          *passwd파일 만들기
          AuthDigestFile /home/in.xxxxnet.net/passwd/htdigest
  • ExpectScript/autoLogin . . . . 6 matches
         .pwd_for_svr1 : svr1에 사용되는 passwd가 암호화되어 저장되어 있는 파일 ([Openssl Aes] 같은걸 사용)
         .pwd_for_svr2 : svr2에 사용되는 passwd가 암호화되어 저장되어 있는 파일
         send_user -- "\npassword for decrypt password : "
         expect -re "password:"
         expect -re "password:"
  • ResetMysqlInitialRootPassword . . . . 6 matches
         #keywords mysql, password, root
          * you can confirm root password is empty from error log
         $ grep password /var/log/mysql/error.log
         mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password;
          * set password
         $ mysqladmin --user=root password
  • SwaggerSettingOnSpringBootWithNewServletContext . . . . 6 matches
         [Swagger] Setting on [Spring Boot] with New Servlet Context
         implementation("io.springfox:springfox-swagger2:${swagger2Version}")
         implementation("io.springfox:springfox-swagger-ui:${swagger2Version}")
         @Import({Swagger2Config.class})
          .addResourceHandler("/swagger-ui.html")
         4. write {{{Swagger2Config.java}}} for swagger setting
         @EnableSwagger2
         public class Swagger2Config {
          return new Docket(DocumentationType.SWAGGER_2)
  • cygwin . . . . 5 matches
         # 이 내용을 /etc/passwd 파일과 /etc/group 파일에 덤프를 뜬다.
         mkpasswd -l > /etc/passwd
         mkpasswd -l -u user01 >> /etc/passwd
  • OurSoftwareDependencyProblem . . . . 4 matches
         https://research.swtch.com/deps
         https://research.swtch.com/deps
         Develop your own systematic ways to check code quality. For example, something as simple as compiling a C or C++ program with important compiler warnings enabled (for example, -Wall) can give you a sense of how seriously the developers work to avoid various undefined behaviors. Recent languages like Go, Rust, and Swift use an unsafe keyword to mark code that violates the type system; look to see how much unsafe code there is. More advanced semantic tools like Infer7 or SpotBugs8 are helpful too. Linters are less helpful: you should ignore rote suggestions about topics like brace style and focus instead on semantic problems.
         For Code Search, we developed an abstract Regexp class that defined the interface Code Search needed from any regular expression engine. Then we wrote a thin wrapper around PCRE implementing that interface. The indirection made it easy to test alternate libraries, and it kept us from accidentally introducing knowledge of PCRE internals into the rest of the source tree. That in turn ensured that it would be easy to switch to a different dependency if needed.
         Even with these examples and other off-the-shelf options, run-time isolation of suspect code is still too difficult and rarely done. True isolation would require a completely memory-safe language, with no escape hatch into untyped code. That’s challenging not just in entirely unsafe languages like C and C++ but also in languages that provide restricted unsafe operations, like Java when including JNI, or like Go, Rust, and Swift when including their “unsafe” features. Even in a memory-safe language like JavaScript, code often has access to far more than it needs. In November 2018, the latest version of the NPM package event-stream, which provided a functional streaming API for JavaScript events, was discovered to contain obfuscated malicious code that had been added two and a half months earlier. The code, which harvested large Bitcoin wallets from users of the Copay mobile app, was accessing system resources entirely unrelated to processing event streams.18 One of many possible defenses to this kind of problem would be to better restrict what dependencies can access.
         If a dependency seems too risky and you can’t find a way to isolate it, the best answer may be to avoid it entirely, or at least to avoid the parts you’ve identified as most problematic.
  • HelpOnUserPreferences . . . . 3 matches
          * '''[[GetText(Password)]]''': Something you can remember but is very hard for friends and family to guess.
          * '''[[GetText(Password repeat)]]''': if you initially set or later change your password, repeat it here to avoid typos.
  • JavaTips . . . . 3 matches
          String password = br.readLine();
          System.out.println("passwd = "+password);
  • ProcMailSample1 . . . . 3 matches
         * ^Subject:.*your password$
         * ^Subject:.*Re: [Yy]our [Pp]assword\!$
         * ^Subject: How sweet this Screen saver$
  • awk . . . . 3 matches
         == /etc/passwd 파일에서 uid만 리스팅 ==
         $ awk -F":" '{print $3}' /etc/passwd
         $ awk '{print NR "\t" $0}' /etc/passwd
  • convenc . . . . 3 matches
          if(args[i].startsWith("-")){
          if(args[i].startsWith(optId)){
          OutputStreamWriter osw = new OutputStreamWriter(System.out, csOutput);
          osw.write(buf, 0, len);
          osw.flush();
  • fonera . . . . 3 matches
          * The original firmware will be loaded from a second storage area inside the Fonera. This process takes a couple of minutes to complete. Do not switch off the Fonera during this process.
          * Now, the Fonera is back to its default factory configuration: username/password of the Management console are admin/admin, the WPA key is the serial number (S/N: on the sticker beneath the Fonera) and the SSIDs are called 'MyPlace' and 'FON_AP'
          * Switch on the Fonera. As it is running with the default firmware it will download the latest firmware version as soon the internet connection is established. The update can take up to 45 minutes. No matter what, do not disconnect power cable while updating it would damage the Fonera.
          * During the update the WLAN and Internet LEDs will switch on and off a couple of times. The wireless signals may appear sometimes, if you are able to connect to them you might experience disconnections.
  • jcifs . . . . 3 matches
         import jcifs.smb.NtlmPasswordAuthentication;
          NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(
  • mysql . . . . 3 matches
         [remove mysql data and root password]
         [reset mysql root password]
         [reset mysql initial root password]
  • 패스워드크랙 . . . . 3 matches
         password crack program
         unix passwd shadow : md5 hash (256bit)
         Password Guessing
  • Ant . . . . 2 matches
          <sshexec host="${host}" username="${username}" password="${password}" trust="true"
  • EclipseFont . . . . 2 matches
          swt-simple: false;
          swt-mru-visible: false;
  • JavaGUI개발툴 . . . . 2 matches
         [eclipse] + [jigloo] : swing, swt
  • LinuxTips . . . . 2 matches
         = root 비밀번호(암호,password)를 분실한(잊어먹은) 경우 =
          5. 이렇게 하면 싱글 유저 모드로 부팅이되며 passwd라는 명령으로 root 암호를 재지정할수 있게 된다.
  • MoniWikiACL . . . . 2 matches
         # some POST actions support protected mode using admin password
          * `protect`: protect some password protected POST actions (not all actions are protectable)
  • SmbMountOnUbuntu . . . . 2 matches
         Password for ftp@//rtac68p/pds:
         sudo mount -t cifs //YOUR_SERVER_NAME/SHARE_NAME /mnt/smb -o user=USERNAME,password=PASSWORD,workgroup=WORKGROUP_NAME,ip=1.2.3.4,iocharset=utf8
  • Useful Software . . . . 2 matches
         ["sw"] >
          * kupfer: fuzzy search, cli command execution support, window switcher support
  • Useful Software for Mac . . . . 2 matches
         [sw] >
         useful [sw] for [Mac]
  • Vim Plugins . . . . 2 matches
         #keywords vi, vim, plugin, useful sw
          * [sw]
  • WeblogicBoot.properties . . . . 2 matches
         password=MY_PASSWD
         password={3DES}a;lskdjf;laksjdflkasdf\=\=
  • XmodmapToUseCapslockAsVimLikeHJKLArrowKeyAndESCKey . . . . 2 matches
         xcape -e 'Mode_switch=Escape'
         keycode 66 = Mode_switch
  • copy-production2dev-read-id-from-stdin.py . . . . 2 matches
         prdb = MySQLdb.connect(prdb_host, "angcoup", "impasswd", "mydb")
         devdb = MySQLdb.connect(devdb_host, "angcoup", "impasswd", "mydb")
  • fstab . . . . 2 matches
         UUID=774e70b4-d61d-4fcf-bbbf-f8c4c477e240 none swap sw 0 0
  • glance . . . . 2 matches
         + Swap util bar
         o U = used swap space
         o R = reserved swap space
  • gscan . . . . 2 matches
         http://wiki.gimslab.com/gscan/gscan-install.swf.html
         http://wiki.gimslab.com/gscan/gscan-commandline-work.swf.html
  • 6.권한상승-해킹공격9단계 . . . . 1 match
         [패스워드 크랙] (Password Crack)
  • AI Tools . . . . 1 match
         [sw] >
  • Ajax관련사이트 . . . . 1 match
         http://swik.net/AJAXSLT
  • CliTool . . . . 1 match
         [sw] >
  • ExpectScript/mycliViaSshTunneling . . . . 1 match
         expect "Password"
  • FortuneCookies . . . . 1 match
          * Promptness is its own reward, if one lives by the clock instead of the sword.
  • GalaxyA53G전용모드로변경하기 . . . . 1 match
         password :
  • GoodAndroidApp . . . . 1 match
         [[sw]] >
  • HttpsTest.java . . . . 1 match
         -Djavax.net.ssl.trustStore=jssecacerts -Djavax.net.ssl.trustStorePassword=changeit
  • Intellij Idea . . . . 1 match
         [sw] >
  • Intellij Idea Plugins . . . . 1 match
         [sw] > ["Intellij Idea"] >
  • JSLibrary . . . . 1 match
         Store.js - https://github.com/marcuswestin/store.js
  • JuniperVPN64bitUbuntu에서CommandLine으로연결하기 . . . . 1 match
         execute following command(password is blank)
  • KafkaCat . . . . 1 match
         export PASSWORD=pwd1
          -X sasl.password=$PASSWORD \
  • LinuxH/w정보알아내기 . . . . 1 match
         스왑정보 : cat /proc/swaps
  • PMD . . . . 1 match
          * Possible bugs - empty try/catch/finally/switch statements
  • Pivotal summit 2019 Seoul . . . . 1 match
         Strangling Monoliths: Swift
         https://www.infoq.com/news/2019/10/swift-method/
  • PowerSetWithDp . . . . 1 match
         http://swlock.blogspot.kr/2016/03/dp-power-set-with-dp.html
  • RemoveMysqlDataAndRootPassword . . . . 1 match
         mysql> alter user root@localhost identified by 'myNewPassword';
  • Spring3.0특징요약 . . . . 1 match
          SpitterUser user = new SpitterUser(userName, password);
  • Stty특수문자지정 . . . . 1 match
         swtch (np)
  • Swagger . . . . 1 match
         go to [swagger]
  • UserPreferences . . . . 1 match
         If you are coming to this page for the first time, you'll see form into which you can enter your username and some other settings (crypted password and e-mail are stored). If you click on '''Create Profile''', a user profile will be created for you. With the response, a HTTP cookie will be sent that contains your user ID, which enables the system to recognize you.
  • VimShortcuts . . . . 1 match
         :set sw=4
  • WebUploadStreamFormat . . . . 1 match
         Accept: image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*
  • WeblogicPasswordReset . . . . 1 match
         password=NEW_PWD
  • WikiSlide . . . . 1 match
          * Email address for subscribing to page change emails and retrieving a lost login/password
  • WikiWikiWeb . . . . 1 match
          * get some answers on the Wiki:WikiWikiWebFaq
  • WikiWikiWebFaq . . . . 1 match
         See Wiki:WikiWikiWebFaq for more questions & answers.
  • WindowRootkitScanning . . . . 1 match
         icesword
  • aromnet.ini . . . . 1 match
         Password=
  • chatgpt . . . . 1 match
          echo "answer: $RESPONSE" >> $FILE
  • editor . . . . 1 match
         [sw] >
  • expect . . . . 1 match
         Expect is a tool for automating interactive applications such as telnet, ftp, passwd, fsck, rlogin, tip, etc.
  • flashWatch . . . . 1 match
         attachment:watch_vector2.swf
  • html5_book_원철연 . . . . 1 match
         3.4 switch … case 문, 3.5 for 문,3.6 for … in 문, 3.7 while문 http://fromyou.tistory.com/530
  • refactoring . . . . 1 match
         3.12 반복되는 switch문
  • singleusermode . . . . 1 match
         http://linuxbsdos.com/2015/03/19/how-to-reset-user-password-on-ubuntu-14-10/
  • small-dic . . . . 1 match
         attachment:smalldic.swf
  • sniffing . . . . 1 match
         1.switch jamming 공격 : 위조된 맥주소를 지속적으로 흘려보내 스위치의 주소테이블을 넘치게함
  • spark . . . . 1 match
         val df_mysql = sqlContext.read.format("jdbc").option("url", "jdbc:mysql://dev-db/finance").option("driver", "com.mysql.jdbc.Driver").option("dbtable", "(select a.*,b.productBaseDetailSeq,b.optionSrl,b.paymentSrl,b.amount,b.salesSupplyFee,b.salesSupplyFeeVat,b.paymentSupplyFee,b.paymentSupplyFeeVat,b.count from product_base a join product_base_detail b on a.productBaseSeq=b.productBaseSeq) as prbase").option("user", "ididid").option("password", "xxxxx").load()
  • vim . . . . 1 match
         [sw] > [editor] >
  • weblogic . . . . 1 match
         [weblogic password reset]
  • wibro . . . . 1 match
         swt-h200k
  • 공유기 . . . . 1 match
         default password : user
  • 구글 엔지니어는 이렇게 일한다 - 타이터스 위터스 외 - 202206 . . . . 1 match
         html version (eng) : https://abseil.io/resources/swe-book/html/ch01.html
  • 난 할 수 있어 라고 더 자주 외쳐야 하는 이유 . . . . 1 match
         -존 아사리프 & 머레이 스미스, ‘The answer’에서
  • 모바일웹에서인증된기기식별 . . . . 1 match
         보안이란 원래 100%는 없고 좀 더 보안성을 높인다는 측면에서 단순 id/password 보다는 어느정도 효과가 있지 않을까 생각하는데...
  • 배치로MysqlDb백업받기 . . . . 1 match
         /usr/local/mysql/bin/mysqldump -u USER_ID --password=PASSWD DB_NAME > db_dump_`date +%Y%m%d`
  • 부팅시자동으로Logon되게하기 . . . . 1 match
         DefaultPassword 스트링 생성 후 어드민 암호로 값 입력
  • 작은사전띄우기 . . . . 1 match
         attachment:small_dic.swf
  • 해킹툴 . . . . 1 match
         SwitchSniffer : 윈도우용 arp 공격 및 스니핑
         @stake LC 5 : password-auditing tool
Found 88 matching pages out of 1802 total pages

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2023-11-27 09:30:50
Processing time 0.2037 sec