index.html 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <!DOCTYPE html>
  2. <html lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <meta name="style" content="day1"/>
  6. <meta name="viewport" content="width=device-width, initial-scale=1"/>
  7. <!--
  8. Copyright (c) 2016, 2024, 5 Mode
  9. All rights reserved.
  10. Redistribution and use in source and binary forms, with or without
  11. modification, are permitted provided that the following conditions are met:
  12. * Redistributions of source code must retain the above copyright
  13. notice, this list of conditions and the following disclaimer.
  14. * Redistributions in binary form must reproduce the above copyright
  15. notice, this list of conditions and the following disclaimer in the
  16. documentation and/or other materials provided with the distribution.
  17. * Neither 5 Mode nor the names of its contributors
  18. may be used to endorse or promote products derived from this software
  19. without specific prior written permission.
  20. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  21. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  22. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  23. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY
  24. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  25. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  26. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  27. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  28. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  29. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. https://opensource.org/licenses/BSD-3-Clause -->
  31. <title>Http Console: Ubiquity c'est la vie..</title>
  32. <link rel="shortcut icon" href="HCres/favicon.ico" />
  33. <meta name="description" content="Welcome to Http Console"/>
  34. <meta name="author" content="5 Mode"/>
  35. <meta name="robots" content="noindex"/>
  36. <script src="HCjs/jquery-3.1.0.min.js" type="text/javascript"></script>
  37. <script src="HCjs/jquery-ui.1.12.1.min.js" type="text/javascript"></script>
  38. <script src="HCjs/HC_common.js" type="text/javascript"></script>
  39. <script src="HCjs/bootstrap.min.js" type="text/javascript"></script>
  40. <script src="HCjs/sha.js" type="text/javascript"></script>
  41. <script src="HCjs/HC.js" type="text/javascript" defer></script>
  42. <link href="HCcss/bootstrap.min.css" type="text/css" rel="stylesheet">
  43. <link href="HCcss/jquery-ui.1.12.1.css" type="text/css" rel="stylesheet">
  44. <link href="HCcss/style.css?v=1631827555" type="text/css" rel="stylesheet">
  45. </head>
  46. <body>
  47. <div class="header">
  48. <a href="/" style="color:white; text-decoration: none;"><img src="HCres/hclogo.png" style="width:48px;">&nbsp;Http Console</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://github.com/par7133/HttpConsole" style="color:#ffffff"><span style="color:#119fe2">on</span> github</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="mailto:info@httpconsole.com" style="color:#ffffff"><span style="color:#119fe2">for</span> feedback</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="tel:+39-331-4029415" style="font-size:13px;background-color:#15c60b;border:2px solid #15c60b;color:white;height:27px;text-decoration:none;">&nbsp;&nbsp;get support&nbsp;&nbsp;</a>
  49. </div>
  50. <div style="clear:both; float:left; padding:8px; width:15%; height:100%;">
  51. &nbsp;Download<br>
  52. &nbsp;<a href="https://github.com/par7133/HttpConsole/archive/refs/tags/v0.5.1-alpha.zip">Release 0.5.0 (zip)</a><br>
  53. &nbsp;<a href="https://github.com/par7133/HttpConsole/archive/refs/tags/v0.5.1-alpha.tar.gz">Release 0.5.0 (tar.gz)</a><br>
  54. <br><br><br>
  55. &nbsp;Password<br>
  56. &nbsp;<input type="text" id="Password" name="Password" style="font-size:10px; color:black; width: 90%; border-radius:3px;" value=""><br>
  57. &nbsp;Salt<br>
  58. &nbsp;<input type="text" id="Salt" style="font-size:10px; color:black; width: 90%; border-radius:3px;" autocomplete="off"><br><br>
  59. &nbsp;<input type="button" id="Encode" value="Hash Me!" onclick="showEncodedPassword();" style="position:relative;left:-2px;width:92%; border-radius:2px; color:black;">
  60. <br><br><br>
  61. </div>
  62. <div style="float:left; width:85%;height:100%; padding:8px; border-left: 1px solid #2c2f34;">
  63. <div id="FirstBanner" style="border-radius:20px; position:relative; left:+3px; width:98%; background-color: #33aced; padding: 20px; margin-bottom:8px;">
  64. <button type="button" class="close" aria-label="Close" onclick="" style="position:relative; left:-10px;">
  65. <span aria-hidden="true">&times;</span>
  66. </button>
  67. Hello and welcome to Http Console!<br><br>
  68. Http Console is a light and simple web console to manage your website.<br><br>
  69. Http Console is supplied AS-IS and we do not take any responsibility for its misusage.<br><br>
  70. First step, use the left side panel password and salt fields to create the hash to insert in the config file. Remember to manually set there also the salt value.<br><br>
  71. As you are going to make work Http Console in the PHP process environment, using a limited web server or phpfpm user, you must follow some simple directives for an optimal first setup:<br>
  72. <ol>
  73. <li>Setup a "stage" folder in your web app path; give to the stage folder the write permissions; and set the stage path in the config file.</li>
  74. <li>Inside the stage path create a "sample" folder and give to this folder the write permission. This folder will be the sample folder to copy from to create new folders with write permissions inside the stage path.</li>
  75. <li>Likewise create an "upload" folder inside the stage path giving the right permissions.</li>
  76. <li>Configure the max history items and max recall history items as required (default: 50).</li>
  77. </ol>
  78. <br>
  79. Http Console understands a limited set of commands with a far limited set of parameters:<br>
  80. cd, cd.., cp, cp -R, ls, ls -lsa, mv, pwd<br><br>
  81. Hope you can enjoy it and let us know about any feedback: <a href="mailto:info@httpconsole.com" style="color:#e6d236;">info@httpconsole.com</a>
  82. </div>
  83. </div>
  84. <div class="footer">
  85. <div id="footerCont">&nbsp;</div>
  86. <div id="footer"><span style="background:#FFFFFF;opacity:1.0;margin-right:10px;">&nbsp;&nbsp;A <a href="http://5mode.com">5 Mode</a> project and <a href="http://wysiwyg.systems">WYSIWYG</a> system. Some rights reserved.</span></div>
  87. </div>
  88. <!-- Yandex.Metrika counter -->
  89. <script type="text/javascript" >
  90. (function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
  91. m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
  92. (window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
  93. ym(85293340, "init", {
  94. clickmap:true,
  95. trackLinks:true,
  96. accurateTrackBounce:true
  97. });
  98. </script>
  99. <noscript><div><img src="https://mc.yandex.ru/watch/85293340" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
  100. <!-- /Yandex.Metrika counter -->
  101. </body>
  102. </html>