├── LICENSE ├── README.md ├── SoI ├── CaptureSoI.grc ├── README.md ├── ReviewSoIWithNoise.grc ├── SimpleAMDemodulation.grc └── TwoStageDownsample.grc └── redz-sigint.py /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 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 General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | 676 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RedzSIGINT 2 | Software framework for your own SIGINT platform 3 | 4 | For Hardware check out https://github.com/iamredshift/SIGINTJeep 5 | 6 | 7 | Update: 8 | 9 | The SIGINT Jeep project started as a wide range hobbyist SIGINT Platform, but I unfortunately have not been able to spend a ton of time developing further, largely due a little time after I updated this last a ton of my research into SIGINT was stolen as well as a few laptops and SDRs which really deflated me (lucky everything was in encrypted containers on encrypted drives so nothing was exposed). I also was growing my own company and making sure my employees and contractors have paychecks. 10 | 11 | 12 | With that said, I have uploaded the documents needed one would need to make your own SIGINT Vehicle. 13 | I also will be release some items more related to the real SIGINT tools and gear I use, so check back every so often to see that stuff released (will most likely be in another repository and not this one). 14 | 15 | I am asked quite a bit if I still use the original build, and the answer to that is not really. Most of signals background is done with professional equipment, and every now and then I go back and play with a few items in GNURadio, but the SIGINT/EW work that my company does many times deals with situations were any failure is not an option. 16 | 17 | 18 | This is not to say the USRP, BladeRF, and GNURadio are not great tools, they just are not my go to for professional SIGINT work. They still are the tools I use when testing the IEEE 802.15.4 family, testing alarm systems, and some of my lower profile research. 19 | I am not always checking my GIT, so the best way to reach me is Twitter @IAmRedshift. If you want to talk radios, I can always be hit up in person at DefCon and Cactus Con, as others have done in the past. 20 | 21 | 22 | I will be pushing updates here and there for this project, and if you would like to help, reach out to me and we can sync up. 23 | 24 | 25 | TODO: 26 | Clean up and upload misisng SoI files 27 | Upload OpenBTS Config 28 | Upload modified scapy-radio files 29 | Upload Jammer File 30 | Fix and Upload install.sh script 31 | Make a good guide for this 32 | 33 | Quick Notes: 34 | Bellow is some hard coded paths. Until I get the install.sh script working 100%, just make sure your file paths match or change them so they fit your system. 35 | 36 | 37 | --IMSI CATCHER CONFIG-- 38 | 39 | SMQUEUE_BIN = "/OpenBTS/smqueue" 40 | 41 | SIPAUTHSERVER_BIN = "/OpenBTS/sipauthserve" 42 | 43 | OPENBTS_BIN = "/OpenBTS/OpenBTS" 44 | 45 | OPENBTSCLI_BIN = "/OpenBTS/OpenBTSCLI" 46 | 47 | FREESWITCH_BIN = "/usr/bin/freeswitch" 48 | 49 | 50 | --ANALYZE SIGNAL CONFIG-- 51 | 52 | GNU_RADIO_COMPANION_BIN = "/usr/local/bin/gnuradio-companion" 53 | 54 | SIGNALS_OF_INTREST_GRCS_DIR = "/home/sigintjeep/SoI/" 55 | 56 | 57 | --ANALYZE SIGNAL FILE NAMES-- 58 | 59 | CAPTURE_SOI_FILENAME = 'CaptureSoI.grc' 60 | 61 | DEMOD_SOI_FILENAME = 'SimpleAMDemodulation.grc' 62 | 63 | BASIC_ANALYZE_SOI_FILENAME = 'RewiewSoIWithNoise.grc' 64 | 65 | DOWNSAMPLE_SOI_FILENAME = 'TwoStageDownsample.grc' 66 | 67 | CLOCK_RECOVERY_SOI_FILENAME = 'ClockRecoveryPoC.grc' 68 | 69 | REPLAY_SOI_FILENAME = 'ReplaySoI.grc' 70 | 71 | 72 | --Freq Jammer Config-- 73 | 74 | FREQ_JAMMER_FILE_DIR = '/home/sigintjeep/' 75 | 76 | --Freq Jammer Files-- 77 | 78 | FREQ_JAMMER_CELL_ATANDT_FILENAME = 'CellJammerATANDT.py' 79 | 80 | 81 | --IOT Config Files-- 82 | 83 | IOT_FILE_DIR = '/home/sigintjeep/.scapy/radio/' 84 | 85 | Thank You: 86 | Royal Rivera (@R4stln) 87 | -------------------------------------------------------------------------------- /SoI/CaptureSoI.grc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Fri Jun 12 03:12:07 2015 5 | 6 | options 7 | 8 | author 9 | UHD GRC Example with slight edit by Drew Redshift Porter 10 | 11 | 12 | window_size 13 | 1280, 1024 14 | 15 | 16 | category 17 | Custom 18 | 19 | 20 | comment 21 | 22 | 23 | 24 | description 25 | UHD FFT Waveform Plotter and copy to file sync 26 | 27 | 28 | _enabled 29 | True 30 | 31 | 32 | _coordinate 33 | (-1, -3) 34 | 35 | 36 | _rotation 37 | 0 38 | 39 | 40 | generate_options 41 | qt_gui 42 | 43 | 44 | id 45 | uhd_fft 46 | 47 | 48 | max_nouts 49 | 0 50 | 51 | 52 | realtime_scheduling 53 | 54 | 55 | 56 | run_options 57 | prompt 58 | 59 | 60 | run 61 | True 62 | 63 | 64 | thread_safe_setters 65 | 66 | 67 | 68 | title 69 | UHD FFT 70 | 71 | 72 | 73 | variable_qtgui_chooser 74 | 75 | comment 76 | 77 | 78 | 79 | value 80 | antenna 81 | 82 | 83 | _enabled 84 | True 85 | 86 | 87 | _coordinate 88 | (1072, 315) 89 | 90 | 91 | gui_hint 92 | 4,2,1,2 93 | 94 | 95 | _rotation 96 | 0 97 | 98 | 99 | id 100 | ant 101 | 102 | 103 | label0 104 | RX2 105 | 106 | 107 | label1 108 | TX/RX 109 | 110 | 111 | label2 112 | J1 113 | 114 | 115 | label3 116 | J2 117 | 118 | 119 | label4 120 | 121 | 122 | 123 | label 124 | Antenna 125 | 126 | 127 | labels 128 | [] 129 | 130 | 131 | num_opts 132 | 4 133 | 134 | 135 | option0 136 | RX2 137 | 138 | 139 | option1 140 | TX/RX 141 | 142 | 143 | option2 144 | J1 145 | 146 | 147 | option3 148 | J2 149 | 150 | 151 | option4 152 | 4 153 | 154 | 155 | options 156 | [0, 1, 2] 157 | 158 | 159 | orient 160 | Qt.QVBoxLayout 161 | 162 | 163 | type 164 | string 165 | 166 | 167 | widget 168 | combo_box 169 | 170 | 171 | 172 | variable_function_probe 173 | 174 | block_id 175 | uhd_usrp_source_0 176 | 177 | 178 | comment 179 | 180 | 181 | 182 | _enabled 183 | True 184 | 185 | 186 | function_args 187 | "'lo_locked'" 188 | 189 | 190 | function_name 191 | get_sensor 192 | 193 | 194 | _coordinate 195 | (896, 107) 196 | 197 | 198 | _rotation 199 | 0 200 | 201 | 202 | id 203 | chan0_lo_locked 204 | 205 | 206 | poll_rate 207 | 10 208 | 209 | 210 | value 211 | uhd.sensor_value("", False, "") 212 | 213 | 214 | 215 | variable_function_probe 216 | 217 | block_id 218 | uhd_usrp_source_0 219 | 220 | 221 | comment 222 | 223 | 224 | 225 | _enabled 226 | True 227 | 228 | 229 | function_args 230 | "'lo_locked'" 231 | 232 | 233 | function_name 234 | get_sensor 235 | 236 | 237 | _coordinate 238 | (896, 243) 239 | 240 | 241 | _rotation 242 | 0 243 | 244 | 245 | id 246 | current_freq_c 247 | 248 | 249 | poll_rate 250 | 10 251 | 252 | 253 | value 254 | freq_c 255 | 256 | 257 | 258 | variable_qtgui_entry 259 | 260 | comment 261 | 262 | 263 | 264 | value 265 | freq 266 | 267 | 268 | _enabled 269 | True 270 | 271 | 272 | _coordinate 273 | (720, 267) 274 | 275 | 276 | gui_hint 277 | 3,0,1,2 278 | 279 | 280 | _rotation 281 | 0 282 | 283 | 284 | id 285 | freq_c 286 | 287 | 288 | label 289 | RX Tune Frequency 290 | 291 | 292 | type 293 | real 294 | 295 | 296 | 297 | variable_qtgui_range 298 | 299 | comment 300 | 301 | 302 | 303 | value 304 | gain 305 | 306 | 307 | _enabled 308 | 1 309 | 310 | 311 | _coordinate 312 | (720, 131) 313 | 314 | 315 | gui_hint 316 | 2,0,1,4 317 | 318 | 319 | _rotation 320 | 0 321 | 322 | 323 | id 324 | gain_ 325 | 326 | 327 | label 328 | RX Gain 329 | 330 | 331 | min_len 332 | 200 333 | 334 | 335 | orient 336 | Qt.Horizontal 337 | 338 | 339 | start 340 | 0 341 | 342 | 343 | step 344 | .5 345 | 346 | 347 | stop 348 | 31.5 349 | 350 | 351 | rangeType 352 | float 353 | 354 | 355 | widget 356 | counter_slider 357 | 358 | 359 | 360 | variable_qtgui_label 361 | 362 | comment 363 | 364 | 365 | 366 | value 367 | chan0_lo_locked.to_bool() 368 | 369 | 370 | _enabled 371 | True 372 | 373 | 374 | formatter 375 | None 376 | 377 | 378 | _coordinate 379 | (1072, 219) 380 | 381 | 382 | gui_hint 383 | 4,0,1,2 384 | 385 | 386 | _rotation 387 | 0 388 | 389 | 390 | id 391 | lo_locked_probe 392 | 393 | 394 | label 395 | LO locked 396 | 397 | 398 | type 399 | bool 400 | 401 | 402 | 403 | variable_qtgui_entry 404 | 405 | comment 406 | 407 | 408 | 409 | value 410 | samp_rate 411 | 412 | 413 | _enabled 414 | True 415 | 416 | 417 | _coordinate 418 | (544, 219) 419 | 420 | 421 | gui_hint 422 | 3,2,1,2 423 | 424 | 425 | _rotation 426 | 0 427 | 428 | 429 | id 430 | samp_rate_ 431 | 432 | 433 | label 434 | Sampling Rate 435 | 436 | 437 | type 438 | real 439 | 440 | 441 | 442 | variable_qtgui_label 443 | 444 | comment 445 | 446 | 447 | 448 | value 449 | uhd.get_version_string() 450 | 451 | 452 | _enabled 453 | 1 454 | 455 | 456 | formatter 457 | None 458 | 459 | 460 | _coordinate 461 | (352, 131) 462 | 463 | 464 | gui_hint 465 | 1,0,1,2 466 | 467 | 468 | _rotation 469 | 0 470 | 471 | 472 | id 473 | uhd_version_info 474 | 475 | 476 | label 477 | UHD Version 478 | 479 | 480 | type 481 | string 482 | 483 | 484 | 485 | variable_qtgui_label 486 | 487 | comment 488 | 489 | 490 | 491 | value 492 | uhd.get_version_string() 493 | 494 | 495 | _enabled 496 | 1 497 | 498 | 499 | formatter 500 | None 501 | 502 | 503 | _coordinate 504 | (544, 131) 505 | 506 | 507 | gui_hint 508 | 1,2,1,2 509 | 510 | 511 | _rotation 512 | 0 513 | 514 | 515 | id 516 | usrp_device_info 517 | 518 | 519 | label 520 | Device Information 521 | 522 | 523 | type 524 | raw 525 | 526 | 527 | 528 | parameter 529 | 530 | alias 531 | 532 | 533 | 534 | comment 535 | 536 | 537 | 538 | _enabled 539 | True 540 | 541 | 542 | _coordinate 543 | (792, 3) 544 | 545 | 546 | _rotation 547 | 0 548 | 549 | 550 | id 551 | antenna 552 | 553 | 554 | label 555 | Antenna 556 | 557 | 558 | short_id 559 | A 560 | 561 | 562 | type 563 | string 564 | 565 | 566 | value 567 | RX2 568 | 569 | 570 | 571 | parameter 572 | 573 | alias 574 | 575 | 576 | 577 | comment 578 | 579 | 580 | 581 | _enabled 582 | True 583 | 584 | 585 | _coordinate 586 | (176, -5) 587 | 588 | 589 | _rotation 590 | 0 591 | 592 | 593 | id 594 | args 595 | 596 | 597 | label 598 | UHD device address args 599 | 600 | 601 | short_id 602 | a 603 | 604 | 605 | type 606 | string 607 | 608 | 609 | value 610 | 611 | 612 | 613 | 614 | blocks_file_sink 615 | 616 | append 617 | False 618 | 619 | 620 | alias 621 | 622 | 623 | 624 | comment 625 | 626 | 627 | 628 | affinity 629 | 630 | 631 | 632 | _enabled 633 | True 634 | 635 | 636 | file 637 | Your/File/Save/Path/Here/Filename.cfile 638 | 639 | 640 | _coordinate 641 | (296, 595) 642 | 643 | 644 | _rotation 645 | 0 646 | 647 | 648 | id 649 | blocks_file_sink_0 650 | 651 | 652 | type 653 | complex 654 | 655 | 656 | unbuffered 657 | False 658 | 659 | 660 | vlen 661 | 1 662 | 663 | 664 | 665 | qtgui_tab_widget 666 | 667 | alias 668 | 669 | 670 | 671 | comment 672 | 673 | 674 | 675 | _enabled 676 | True 677 | 678 | 679 | _coordinate 680 | (6, 178) 681 | 682 | 683 | gui_hint 684 | 0,0,1,4 685 | 686 | 687 | _rotation 688 | 0 689 | 690 | 691 | id 692 | display 693 | 694 | 695 | label0 696 | Spectrum 697 | 698 | 699 | label1 700 | Waterfall 701 | 702 | 703 | label10 704 | Tab 10 705 | 706 | 707 | label11 708 | Tab 11 709 | 710 | 711 | label12 712 | Tab 12 713 | 714 | 715 | label13 716 | Tab 13 717 | 718 | 719 | label14 720 | Tab 14 721 | 722 | 723 | label15 724 | Tab 15 725 | 726 | 727 | label16 728 | Tab 16 729 | 730 | 731 | label17 732 | Tab 17 733 | 734 | 735 | label18 736 | Tab 18 737 | 738 | 739 | label19 740 | Tab 19 741 | 742 | 743 | label2 744 | Scope 745 | 746 | 747 | label3 748 | Tab 3 749 | 750 | 751 | label4 752 | Tab 4 753 | 754 | 755 | label5 756 | Tab 5 757 | 758 | 759 | label6 760 | Tab 6 761 | 762 | 763 | label7 764 | Tab 7 765 | 766 | 767 | label8 768 | Tab 8 769 | 770 | 771 | label9 772 | Tab 9 773 | 774 | 775 | num_tabs 776 | 3 777 | 778 | 779 | 780 | parameter 781 | 782 | alias 783 | 784 | 785 | 786 | comment 787 | 788 | 789 | 790 | _enabled 791 | True 792 | 793 | 794 | _coordinate 795 | (1104, -5) 796 | 797 | 798 | _rotation 799 | 0 800 | 801 | 802 | id 803 | fft_size 804 | 805 | 806 | label 807 | Set number of FFT bins 808 | 809 | 810 | short_id 811 | 812 | 813 | 814 | type 815 | intx 816 | 817 | 818 | value 819 | 1024 820 | 821 | 822 | 823 | parameter 824 | 825 | alias 826 | 827 | 828 | 829 | comment 830 | 831 | 832 | 833 | _enabled 834 | True 835 | 836 | 837 | _coordinate 838 | (478, 0) 839 | 840 | 841 | _rotation 842 | 0 843 | 844 | 845 | id 846 | freq 847 | 848 | 849 | label 850 | Default Frequency 851 | 852 | 853 | short_id 854 | f 855 | 856 | 857 | type 858 | eng_float 859 | 860 | 861 | value 862 | 2.45e9 863 | 864 | 865 | 866 | parameter 867 | 868 | alias 869 | 870 | 871 | 872 | comment 873 | 874 | 875 | 876 | _enabled 877 | True 878 | 879 | 880 | _coordinate 881 | (632, 3) 882 | 883 | 884 | _rotation 885 | 0 886 | 887 | 888 | id 889 | gain 890 | 891 | 892 | label 893 | Set gain in dB (default is midpoint) 894 | 895 | 896 | short_id 897 | g 898 | 899 | 900 | type 901 | eng_float 902 | 903 | 904 | value 905 | 20 906 | 907 | 908 | 909 | import 910 | 911 | alias 912 | 913 | 914 | 915 | comment 916 | 917 | 918 | 919 | _enabled 920 | True 921 | 922 | 923 | _coordinate 924 | (4, 105) 925 | 926 | 927 | _rotation 928 | 0 929 | 930 | 931 | id 932 | import_0 933 | 934 | 935 | import 936 | import numpy 937 | 938 | 939 | 940 | qtgui_freq_sink_x 941 | 942 | autoscale 943 | False 944 | 945 | 946 | average 947 | 0.1 948 | 949 | 950 | bw 951 | samp_rate_ 952 | 953 | 954 | alias 955 | 956 | 957 | 958 | fc 959 | freq 960 | 961 | 962 | comment 963 | 964 | 965 | 966 | ctrlpanel 967 | True 968 | 969 | 970 | affinity 971 | 972 | 973 | 974 | _enabled 975 | True 976 | 977 | 978 | fftsize 979 | fft_size 980 | 981 | 982 | _coordinate 983 | (320, 267) 984 | 985 | 986 | gui_hint 987 | display@0:0,0,1,4 988 | 989 | 990 | _rotation 991 | 0 992 | 993 | 994 | grid 995 | True 996 | 997 | 998 | id 999 | qtgui_freq_sink_x_0 1000 | 1001 | 1002 | legend 1003 | False 1004 | 1005 | 1006 | alpha1 1007 | 1.0 1008 | 1009 | 1010 | color1 1011 | "blue" 1012 | 1013 | 1014 | label1 1015 | 1016 | 1017 | 1018 | width1 1019 | 1 1020 | 1021 | 1022 | alpha10 1023 | 1.0 1024 | 1025 | 1026 | color10 1027 | "dark blue" 1028 | 1029 | 1030 | label10 1031 | 1032 | 1033 | 1034 | width10 1035 | 1 1036 | 1037 | 1038 | alpha2 1039 | 1.0 1040 | 1041 | 1042 | color2 1043 | "red" 1044 | 1045 | 1046 | label2 1047 | 1048 | 1049 | 1050 | width2 1051 | 1 1052 | 1053 | 1054 | alpha3 1055 | 1.0 1056 | 1057 | 1058 | color3 1059 | "green" 1060 | 1061 | 1062 | label3 1063 | 1064 | 1065 | 1066 | width3 1067 | 1 1068 | 1069 | 1070 | alpha4 1071 | 1.0 1072 | 1073 | 1074 | color4 1075 | "black" 1076 | 1077 | 1078 | label4 1079 | 1080 | 1081 | 1082 | width4 1083 | 1 1084 | 1085 | 1086 | alpha5 1087 | 1.0 1088 | 1089 | 1090 | color5 1091 | "cyan" 1092 | 1093 | 1094 | label5 1095 | 1096 | 1097 | 1098 | width5 1099 | 1 1100 | 1101 | 1102 | alpha6 1103 | 1.0 1104 | 1105 | 1106 | color6 1107 | "magenta" 1108 | 1109 | 1110 | label6 1111 | 1112 | 1113 | 1114 | width6 1115 | 1 1116 | 1117 | 1118 | alpha7 1119 | 1.0 1120 | 1121 | 1122 | color7 1123 | "yellow" 1124 | 1125 | 1126 | label7 1127 | 1128 | 1129 | 1130 | width7 1131 | 1 1132 | 1133 | 1134 | alpha8 1135 | 1.0 1136 | 1137 | 1138 | color8 1139 | "dark red" 1140 | 1141 | 1142 | label8 1143 | 1144 | 1145 | 1146 | width8 1147 | 1 1148 | 1149 | 1150 | alpha9 1151 | 1.0 1152 | 1153 | 1154 | color9 1155 | "dark green" 1156 | 1157 | 1158 | label9 1159 | 1160 | 1161 | 1162 | width9 1163 | 1 1164 | 1165 | 1166 | maxoutbuf 1167 | 0 1168 | 1169 | 1170 | minoutbuf 1171 | 0 1172 | 1173 | 1174 | name 1175 | 1176 | 1177 | 1178 | nconnections 1179 | 1 1180 | 1181 | 1182 | showports 1183 | False 1184 | 1185 | 1186 | freqhalf 1187 | True 1188 | 1189 | 1190 | tr_chan 1191 | 0 1192 | 1193 | 1194 | tr_level 1195 | 0.0 1196 | 1197 | 1198 | tr_mode 1199 | qtgui.TRIG_MODE_FREE 1200 | 1201 | 1202 | tr_tag 1203 | "" 1204 | 1205 | 1206 | type 1207 | complex 1208 | 1209 | 1210 | update_time 1211 | update_rate 1212 | 1213 | 1214 | wintype 1215 | firdes.WIN_BLACKMAN_hARRIS 1216 | 1217 | 1218 | ymax 1219 | 10 1220 | 1221 | 1222 | ymin 1223 | -140 1224 | 1225 | 1226 | 1227 | qtgui_time_sink_x 1228 | 1229 | autoscale 1230 | True 1231 | 1232 | 1233 | alias 1234 | 1235 | 1236 | 1237 | comment 1238 | 1239 | 1240 | 1241 | ctrlpanel 1242 | True 1243 | 1244 | 1245 | affinity 1246 | 1247 | 1248 | 1249 | entags 1250 | True 1251 | 1252 | 1253 | _enabled 1254 | True 1255 | 1256 | 1257 | _coordinate 1258 | (344, 499) 1259 | 1260 | 1261 | gui_hint 1262 | display@2:0,0,1,4 1263 | 1264 | 1265 | _rotation 1266 | 0 1267 | 1268 | 1269 | grid 1270 | False 1271 | 1272 | 1273 | id 1274 | qtgui_time_sink_x_0 1275 | 1276 | 1277 | legend 1278 | False 1279 | 1280 | 1281 | alpha1 1282 | 1.0 1283 | 1284 | 1285 | color1 1286 | "blue" 1287 | 1288 | 1289 | label1 1290 | 1291 | 1292 | 1293 | marker1 1294 | -1 1295 | 1296 | 1297 | style1 1298 | 1 1299 | 1300 | 1301 | width1 1302 | 1 1303 | 1304 | 1305 | alpha10 1306 | 1.0 1307 | 1308 | 1309 | color10 1310 | "blue" 1311 | 1312 | 1313 | label10 1314 | 1315 | 1316 | 1317 | marker10 1318 | -1 1319 | 1320 | 1321 | style10 1322 | 1 1323 | 1324 | 1325 | width10 1326 | 1 1327 | 1328 | 1329 | alpha2 1330 | 1.0 1331 | 1332 | 1333 | color2 1334 | "red" 1335 | 1336 | 1337 | label2 1338 | 1339 | 1340 | 1341 | marker2 1342 | -1 1343 | 1344 | 1345 | style2 1346 | 1 1347 | 1348 | 1349 | width2 1350 | 1 1351 | 1352 | 1353 | alpha3 1354 | 1.0 1355 | 1356 | 1357 | color3 1358 | "green" 1359 | 1360 | 1361 | label3 1362 | 1363 | 1364 | 1365 | marker3 1366 | -1 1367 | 1368 | 1369 | style3 1370 | 1 1371 | 1372 | 1373 | width3 1374 | 1 1375 | 1376 | 1377 | alpha4 1378 | 1.0 1379 | 1380 | 1381 | color4 1382 | "black" 1383 | 1384 | 1385 | label4 1386 | 1387 | 1388 | 1389 | marker4 1390 | -1 1391 | 1392 | 1393 | style4 1394 | 1 1395 | 1396 | 1397 | width4 1398 | 1 1399 | 1400 | 1401 | alpha5 1402 | 1.0 1403 | 1404 | 1405 | color5 1406 | "cyan" 1407 | 1408 | 1409 | label5 1410 | 1411 | 1412 | 1413 | marker5 1414 | -1 1415 | 1416 | 1417 | style5 1418 | 1 1419 | 1420 | 1421 | width5 1422 | 1 1423 | 1424 | 1425 | alpha6 1426 | 1.0 1427 | 1428 | 1429 | color6 1430 | "magenta" 1431 | 1432 | 1433 | label6 1434 | 1435 | 1436 | 1437 | marker6 1438 | -1 1439 | 1440 | 1441 | style6 1442 | 1 1443 | 1444 | 1445 | width6 1446 | 1 1447 | 1448 | 1449 | alpha7 1450 | 1.0 1451 | 1452 | 1453 | color7 1454 | "yellow" 1455 | 1456 | 1457 | label7 1458 | 1459 | 1460 | 1461 | marker7 1462 | -1 1463 | 1464 | 1465 | style7 1466 | 1 1467 | 1468 | 1469 | width7 1470 | 1 1471 | 1472 | 1473 | alpha8 1474 | 1.0 1475 | 1476 | 1477 | color8 1478 | "dark red" 1479 | 1480 | 1481 | label8 1482 | 1483 | 1484 | 1485 | marker8 1486 | -1 1487 | 1488 | 1489 | style8 1490 | 1 1491 | 1492 | 1493 | width8 1494 | 1 1495 | 1496 | 1497 | alpha9 1498 | 1.0 1499 | 1500 | 1501 | color9 1502 | "dark green" 1503 | 1504 | 1505 | label9 1506 | 1507 | 1508 | 1509 | marker9 1510 | -1 1511 | 1512 | 1513 | style9 1514 | 1 1515 | 1516 | 1517 | width9 1518 | 1 1519 | 1520 | 1521 | name 1522 | 1523 | 1524 | 1525 | nconnections 1526 | 1 1527 | 1528 | 1529 | size 1530 | 1024 1531 | 1532 | 1533 | srate 1534 | samp_rate_ 1535 | 1536 | 1537 | tr_chan 1538 | 0 1539 | 1540 | 1541 | tr_delay 1542 | 0 1543 | 1544 | 1545 | tr_level 1546 | 0.0 1547 | 1548 | 1549 | tr_mode 1550 | qtgui.TRIG_MODE_FREE 1551 | 1552 | 1553 | tr_slope 1554 | qtgui.TRIG_SLOPE_POS 1555 | 1556 | 1557 | tr_tag 1558 | "" 1559 | 1560 | 1561 | type 1562 | complex 1563 | 1564 | 1565 | update_time 1566 | update_rate 1567 | 1568 | 1569 | ylabel 1570 | Amplitude 1571 | 1572 | 1573 | yunit 1574 | "" 1575 | 1576 | 1577 | ymax 1578 | 1 1579 | 1580 | 1581 | ymin 1582 | -1 1583 | 1584 | 1585 | 1586 | qtgui_waterfall_sink_x 1587 | 1588 | bw 1589 | samp_rate_ 1590 | 1591 | 1592 | alias 1593 | 1594 | 1595 | 1596 | fc 1597 | freq 1598 | 1599 | 1600 | comment 1601 | 1602 | 1603 | 1604 | affinity 1605 | 1606 | 1607 | 1608 | _enabled 1609 | True 1610 | 1611 | 1612 | fftsize 1613 | 1024 1614 | 1615 | 1616 | _coordinate 1617 | (320, 395) 1618 | 1619 | 1620 | gui_hint 1621 | display@1:0,0,1,4 1622 | 1623 | 1624 | _rotation 1625 | 0 1626 | 1627 | 1628 | grid 1629 | False 1630 | 1631 | 1632 | id 1633 | qtgui_waterfall_sink_x_0 1634 | 1635 | 1636 | int_max 1637 | 10 1638 | 1639 | 1640 | int_min 1641 | -140 1642 | 1643 | 1644 | legend 1645 | True 1646 | 1647 | 1648 | alpha1 1649 | 1.0 1650 | 1651 | 1652 | color1 1653 | 0 1654 | 1655 | 1656 | label1 1657 | 1658 | 1659 | 1660 | alpha10 1661 | 1.0 1662 | 1663 | 1664 | color10 1665 | 0 1666 | 1667 | 1668 | label10 1669 | 1670 | 1671 | 1672 | alpha2 1673 | 1.0 1674 | 1675 | 1676 | color2 1677 | 0 1678 | 1679 | 1680 | label2 1681 | 1682 | 1683 | 1684 | alpha3 1685 | 1.0 1686 | 1687 | 1688 | color3 1689 | 0 1690 | 1691 | 1692 | label3 1693 | 1694 | 1695 | 1696 | alpha4 1697 | 1.0 1698 | 1699 | 1700 | color4 1701 | 0 1702 | 1703 | 1704 | label4 1705 | 1706 | 1707 | 1708 | alpha5 1709 | 1.0 1710 | 1711 | 1712 | color5 1713 | 0 1714 | 1715 | 1716 | label5 1717 | 1718 | 1719 | 1720 | alpha6 1721 | 1.0 1722 | 1723 | 1724 | color6 1725 | 0 1726 | 1727 | 1728 | label6 1729 | 1730 | 1731 | 1732 | alpha7 1733 | 1.0 1734 | 1735 | 1736 | color7 1737 | 0 1738 | 1739 | 1740 | label7 1741 | 1742 | 1743 | 1744 | alpha8 1745 | 1.0 1746 | 1747 | 1748 | color8 1749 | 0 1750 | 1751 | 1752 | label8 1753 | 1754 | 1755 | 1756 | alpha9 1757 | 1.0 1758 | 1759 | 1760 | color9 1761 | 0 1762 | 1763 | 1764 | label9 1765 | 1766 | 1767 | 1768 | maxoutbuf 1769 | 0 1770 | 1771 | 1772 | minoutbuf 1773 | 0 1774 | 1775 | 1776 | name 1777 | 1778 | 1779 | 1780 | nconnections 1781 | 1 1782 | 1783 | 1784 | showports 1785 | True 1786 | 1787 | 1788 | freqhalf 1789 | True 1790 | 1791 | 1792 | type 1793 | complex 1794 | 1795 | 1796 | update_time 1797 | update_rate 1798 | 1799 | 1800 | wintype 1801 | firdes.WIN_BLACKMAN_hARRIS 1802 | 1803 | 1804 | 1805 | parameter 1806 | 1807 | alias 1808 | 1809 | 1810 | 1811 | comment 1812 | 1813 | 1814 | 1815 | _enabled 1816 | True 1817 | 1818 | 1819 | _coordinate 1820 | (352, -5) 1821 | 1822 | 1823 | _rotation 1824 | 0 1825 | 1826 | 1827 | id 1828 | samp_rate 1829 | 1830 | 1831 | label 1832 | Sample Rate 1833 | 1834 | 1835 | short_id 1836 | s 1837 | 1838 | 1839 | type 1840 | eng_float 1841 | 1842 | 1843 | value 1844 | 1e6 1845 | 1846 | 1847 | 1848 | parameter 1849 | 1850 | alias 1851 | 1852 | 1853 | 1854 | comment 1855 | 1856 | 1857 | 1858 | _enabled 1859 | True 1860 | 1861 | 1862 | _coordinate 1863 | (888, -13) 1864 | 1865 | 1866 | _rotation 1867 | 0 1868 | 1869 | 1870 | id 1871 | spec 1872 | 1873 | 1874 | label 1875 | Subdev 1876 | 1877 | 1878 | short_id 1879 | 1880 | 1881 | 1882 | type 1883 | string 1884 | 1885 | 1886 | value 1887 | 1888 | 1889 | 1890 | 1891 | parameter 1892 | 1893 | alias 1894 | 1895 | 1896 | 1897 | comment 1898 | 1899 | 1900 | 1901 | _enabled 1902 | True 1903 | 1904 | 1905 | _coordinate 1906 | (176, 115) 1907 | 1908 | 1909 | _rotation 1910 | 0 1911 | 1912 | 1913 | id 1914 | stream_args 1915 | 1916 | 1917 | label 1918 | Set additional stream args 1919 | 1920 | 1921 | short_id 1922 | 1923 | 1924 | 1925 | type 1926 | string 1927 | 1928 | 1929 | value 1930 | 1931 | 1932 | 1933 | 1934 | uhd_usrp_source 1935 | 1936 | alias 1937 | 1938 | 1939 | 1940 | ant0 1941 | ant 1942 | 1943 | 1944 | bw0 1945 | samp_rate 1946 | 1947 | 1948 | center_freq0 1949 | float(freq_c) 1950 | 1951 | 1952 | norm_gain0 1953 | False 1954 | 1955 | 1956 | gain0 1957 | gain_ 1958 | 1959 | 1960 | ant10 1961 | 1962 | 1963 | 1964 | bw10 1965 | 0 1966 | 1967 | 1968 | center_freq10 1969 | 0 1970 | 1971 | 1972 | norm_gain10 1973 | False 1974 | 1975 | 1976 | gain10 1977 | 0 1978 | 1979 | 1980 | ant11 1981 | 1982 | 1983 | 1984 | bw11 1985 | 0 1986 | 1987 | 1988 | center_freq11 1989 | 0 1990 | 1991 | 1992 | norm_gain11 1993 | False 1994 | 1995 | 1996 | gain11 1997 | 0 1998 | 1999 | 2000 | ant12 2001 | 2002 | 2003 | 2004 | bw12 2005 | 0 2006 | 2007 | 2008 | center_freq12 2009 | 0 2010 | 2011 | 2012 | norm_gain12 2013 | False 2014 | 2015 | 2016 | gain12 2017 | 0 2018 | 2019 | 2020 | ant13 2021 | 2022 | 2023 | 2024 | bw13 2025 | 0 2026 | 2027 | 2028 | center_freq13 2029 | 0 2030 | 2031 | 2032 | norm_gain13 2033 | False 2034 | 2035 | 2036 | gain13 2037 | 0 2038 | 2039 | 2040 | ant14 2041 | 2042 | 2043 | 2044 | bw14 2045 | 0 2046 | 2047 | 2048 | center_freq14 2049 | 0 2050 | 2051 | 2052 | norm_gain14 2053 | False 2054 | 2055 | 2056 | gain14 2057 | 0 2058 | 2059 | 2060 | ant15 2061 | 2062 | 2063 | 2064 | bw15 2065 | 0 2066 | 2067 | 2068 | center_freq15 2069 | 0 2070 | 2071 | 2072 | norm_gain15 2073 | False 2074 | 2075 | 2076 | gain15 2077 | 0 2078 | 2079 | 2080 | ant16 2081 | 2082 | 2083 | 2084 | bw16 2085 | 0 2086 | 2087 | 2088 | center_freq16 2089 | 0 2090 | 2091 | 2092 | norm_gain16 2093 | False 2094 | 2095 | 2096 | gain16 2097 | 0 2098 | 2099 | 2100 | ant17 2101 | 2102 | 2103 | 2104 | bw17 2105 | 0 2106 | 2107 | 2108 | center_freq17 2109 | 0 2110 | 2111 | 2112 | norm_gain17 2113 | False 2114 | 2115 | 2116 | gain17 2117 | 0 2118 | 2119 | 2120 | ant18 2121 | 2122 | 2123 | 2124 | bw18 2125 | 0 2126 | 2127 | 2128 | center_freq18 2129 | 0 2130 | 2131 | 2132 | norm_gain18 2133 | False 2134 | 2135 | 2136 | gain18 2137 | 0 2138 | 2139 | 2140 | ant19 2141 | 2142 | 2143 | 2144 | bw19 2145 | 0 2146 | 2147 | 2148 | center_freq19 2149 | 0 2150 | 2151 | 2152 | norm_gain19 2153 | False 2154 | 2155 | 2156 | gain19 2157 | 0 2158 | 2159 | 2160 | ant1 2161 | 2162 | 2163 | 2164 | bw1 2165 | 0 2166 | 2167 | 2168 | center_freq1 2169 | 0 2170 | 2171 | 2172 | norm_gain1 2173 | False 2174 | 2175 | 2176 | gain1 2177 | 0 2178 | 2179 | 2180 | ant20 2181 | 2182 | 2183 | 2184 | bw20 2185 | 0 2186 | 2187 | 2188 | center_freq20 2189 | 0 2190 | 2191 | 2192 | norm_gain20 2193 | False 2194 | 2195 | 2196 | gain20 2197 | 0 2198 | 2199 | 2200 | ant21 2201 | 2202 | 2203 | 2204 | bw21 2205 | 0 2206 | 2207 | 2208 | center_freq21 2209 | 0 2210 | 2211 | 2212 | norm_gain21 2213 | False 2214 | 2215 | 2216 | gain21 2217 | 0 2218 | 2219 | 2220 | ant22 2221 | 2222 | 2223 | 2224 | bw22 2225 | 0 2226 | 2227 | 2228 | center_freq22 2229 | 0 2230 | 2231 | 2232 | norm_gain22 2233 | False 2234 | 2235 | 2236 | gain22 2237 | 0 2238 | 2239 | 2240 | ant23 2241 | 2242 | 2243 | 2244 | bw23 2245 | 0 2246 | 2247 | 2248 | center_freq23 2249 | 0 2250 | 2251 | 2252 | norm_gain23 2253 | False 2254 | 2255 | 2256 | gain23 2257 | 0 2258 | 2259 | 2260 | ant24 2261 | 2262 | 2263 | 2264 | bw24 2265 | 0 2266 | 2267 | 2268 | center_freq24 2269 | 0 2270 | 2271 | 2272 | norm_gain24 2273 | False 2274 | 2275 | 2276 | gain24 2277 | 0 2278 | 2279 | 2280 | ant25 2281 | 2282 | 2283 | 2284 | bw25 2285 | 0 2286 | 2287 | 2288 | center_freq25 2289 | 0 2290 | 2291 | 2292 | norm_gain25 2293 | False 2294 | 2295 | 2296 | gain25 2297 | 0 2298 | 2299 | 2300 | ant26 2301 | 2302 | 2303 | 2304 | bw26 2305 | 0 2306 | 2307 | 2308 | center_freq26 2309 | 0 2310 | 2311 | 2312 | norm_gain26 2313 | False 2314 | 2315 | 2316 | gain26 2317 | 0 2318 | 2319 | 2320 | ant27 2321 | 2322 | 2323 | 2324 | bw27 2325 | 0 2326 | 2327 | 2328 | center_freq27 2329 | 0 2330 | 2331 | 2332 | norm_gain27 2333 | False 2334 | 2335 | 2336 | gain27 2337 | 0 2338 | 2339 | 2340 | ant28 2341 | 2342 | 2343 | 2344 | bw28 2345 | 0 2346 | 2347 | 2348 | center_freq28 2349 | 0 2350 | 2351 | 2352 | norm_gain28 2353 | False 2354 | 2355 | 2356 | gain28 2357 | 0 2358 | 2359 | 2360 | ant29 2361 | 2362 | 2363 | 2364 | bw29 2365 | 0 2366 | 2367 | 2368 | center_freq29 2369 | 0 2370 | 2371 | 2372 | norm_gain29 2373 | False 2374 | 2375 | 2376 | gain29 2377 | 0 2378 | 2379 | 2380 | ant2 2381 | 2382 | 2383 | 2384 | bw2 2385 | 0 2386 | 2387 | 2388 | center_freq2 2389 | 0 2390 | 2391 | 2392 | norm_gain2 2393 | False 2394 | 2395 | 2396 | gain2 2397 | 0 2398 | 2399 | 2400 | ant30 2401 | 2402 | 2403 | 2404 | bw30 2405 | 0 2406 | 2407 | 2408 | center_freq30 2409 | 0 2410 | 2411 | 2412 | norm_gain30 2413 | False 2414 | 2415 | 2416 | gain30 2417 | 0 2418 | 2419 | 2420 | ant31 2421 | 2422 | 2423 | 2424 | bw31 2425 | 0 2426 | 2427 | 2428 | center_freq31 2429 | 0 2430 | 2431 | 2432 | norm_gain31 2433 | False 2434 | 2435 | 2436 | gain31 2437 | 0 2438 | 2439 | 2440 | ant3 2441 | 2442 | 2443 | 2444 | bw3 2445 | 0 2446 | 2447 | 2448 | center_freq3 2449 | 0 2450 | 2451 | 2452 | norm_gain3 2453 | False 2454 | 2455 | 2456 | gain3 2457 | 0 2458 | 2459 | 2460 | ant4 2461 | 2462 | 2463 | 2464 | bw4 2465 | 0 2466 | 2467 | 2468 | center_freq4 2469 | 0 2470 | 2471 | 2472 | norm_gain4 2473 | False 2474 | 2475 | 2476 | gain4 2477 | 0 2478 | 2479 | 2480 | ant5 2481 | 2482 | 2483 | 2484 | bw5 2485 | 0 2486 | 2487 | 2488 | center_freq5 2489 | 0 2490 | 2491 | 2492 | norm_gain5 2493 | False 2494 | 2495 | 2496 | gain5 2497 | 0 2498 | 2499 | 2500 | ant6 2501 | 2502 | 2503 | 2504 | bw6 2505 | 0 2506 | 2507 | 2508 | center_freq6 2509 | 0 2510 | 2511 | 2512 | norm_gain6 2513 | False 2514 | 2515 | 2516 | gain6 2517 | 0 2518 | 2519 | 2520 | ant7 2521 | 2522 | 2523 | 2524 | bw7 2525 | 0 2526 | 2527 | 2528 | center_freq7 2529 | 0 2530 | 2531 | 2532 | norm_gain7 2533 | False 2534 | 2535 | 2536 | gain7 2537 | 0 2538 | 2539 | 2540 | ant8 2541 | 2542 | 2543 | 2544 | bw8 2545 | 0 2546 | 2547 | 2548 | center_freq8 2549 | 0 2550 | 2551 | 2552 | norm_gain8 2553 | False 2554 | 2555 | 2556 | gain8 2557 | 0 2558 | 2559 | 2560 | ant9 2561 | 2562 | 2563 | 2564 | bw9 2565 | 0 2566 | 2567 | 2568 | center_freq9 2569 | 0 2570 | 2571 | 2572 | norm_gain9 2573 | False 2574 | 2575 | 2576 | gain9 2577 | 0 2578 | 2579 | 2580 | clock_rate 2581 | 0.0 2582 | 2583 | 2584 | comment 2585 | 2586 | 2587 | 2588 | affinity 2589 | 2590 | 2591 | 2592 | dev_addr 2593 | args 2594 | 2595 | 2596 | dev_args 2597 | "" 2598 | 2599 | 2600 | _enabled 2601 | True 2602 | 2603 | 2604 | _coordinate 2605 | (64, 379) 2606 | 2607 | 2608 | _rotation 2609 | 0 2610 | 2611 | 2612 | id 2613 | uhd_usrp_source_0 2614 | 2615 | 2616 | maxoutbuf 2617 | 0 2618 | 2619 | 2620 | clock_source0 2621 | 2622 | 2623 | 2624 | sd_spec0 2625 | spec 2626 | 2627 | 2628 | time_source0 2629 | 2630 | 2631 | 2632 | clock_source1 2633 | 2634 | 2635 | 2636 | sd_spec1 2637 | 2638 | 2639 | 2640 | time_source1 2641 | 2642 | 2643 | 2644 | clock_source2 2645 | 2646 | 2647 | 2648 | sd_spec2 2649 | 2650 | 2651 | 2652 | time_source2 2653 | 2654 | 2655 | 2656 | clock_source3 2657 | 2658 | 2659 | 2660 | sd_spec3 2661 | 2662 | 2663 | 2664 | time_source3 2665 | 2666 | 2667 | 2668 | clock_source4 2669 | 2670 | 2671 | 2672 | sd_spec4 2673 | 2674 | 2675 | 2676 | time_source4 2677 | 2678 | 2679 | 2680 | clock_source5 2681 | 2682 | 2683 | 2684 | sd_spec5 2685 | 2686 | 2687 | 2688 | time_source5 2689 | 2690 | 2691 | 2692 | clock_source6 2693 | 2694 | 2695 | 2696 | sd_spec6 2697 | 2698 | 2699 | 2700 | time_source6 2701 | 2702 | 2703 | 2704 | clock_source7 2705 | 2706 | 2707 | 2708 | sd_spec7 2709 | 2710 | 2711 | 2712 | time_source7 2713 | 2714 | 2715 | 2716 | minoutbuf 2717 | 0 2718 | 2719 | 2720 | nchan 2721 | 1 2722 | 2723 | 2724 | num_mboards 2725 | 1 2726 | 2727 | 2728 | type 2729 | fc32 2730 | 2731 | 2732 | samp_rate 2733 | samp_rate_ 2734 | 2735 | 2736 | stream_args 2737 | stream_args 2738 | 2739 | 2740 | stream_chans 2741 | [] 2742 | 2743 | 2744 | sync 2745 | 2746 | 2747 | 2748 | otw 2749 | wire_format 2750 | 2751 | 2752 | 2753 | parameter 2754 | 2755 | alias 2756 | 2757 | 2758 | 2759 | comment 2760 | 2761 | 2762 | 2763 | _enabled 2764 | True 2765 | 2766 | 2767 | _coordinate 2768 | (1072, 107) 2769 | 2770 | 2771 | _rotation 2772 | 0 2773 | 2774 | 2775 | id 2776 | update_rate 2777 | 2778 | 2779 | label 2780 | Set GUI widget update rate 2781 | 2782 | 2783 | short_id 2784 | 2785 | 2786 | 2787 | type 2788 | eng_float 2789 | 2790 | 2791 | value 2792 | .1 2793 | 2794 | 2795 | 2796 | parameter 2797 | 2798 | alias 2799 | 2800 | 2801 | 2802 | comment 2803 | 2804 | 2805 | 2806 | _enabled 2807 | True 2808 | 2809 | 2810 | _coordinate 2811 | (984, -5) 2812 | 2813 | 2814 | _rotation 2815 | 0 2816 | 2817 | 2818 | id 2819 | wire_format 2820 | 2821 | 2822 | label 2823 | Wire format 2824 | 2825 | 2826 | short_id 2827 | 2828 | 2829 | 2830 | type 2831 | string 2832 | 2833 | 2834 | value 2835 | 2836 | 2837 | 2838 | 2839 | qtgui_freq_sink_x_0 2840 | qtgui_freq_sink_x_0 2841 | freq 2842 | freq 2843 | 2844 | 2845 | qtgui_freq_sink_x_0 2846 | uhd_usrp_source_0 2847 | freq 2848 | command 2849 | 2850 | 2851 | uhd_usrp_source_0 2852 | blocks_file_sink_0 2853 | 0 2854 | 0 2855 | 2856 | 2857 | uhd_usrp_source_0 2858 | qtgui_freq_sink_x_0 2859 | 0 2860 | 0 2861 | 2862 | 2863 | uhd_usrp_source_0 2864 | qtgui_time_sink_x_0 2865 | 0 2866 | 0 2867 | 2868 | 2869 | uhd_usrp_source_0 2870 | qtgui_waterfall_sink_x_0 2871 | 0 2872 | 0 2873 | 2874 | 2875 | -------------------------------------------------------------------------------- /SoI/README.md: -------------------------------------------------------------------------------- 1 | A head start when RE signal. Run in this order. 2 | CaptureSoI > ReviewSoIWithNoise > SimpleAMDemodulation > TwoStageDownsample 3 | 4 | Many items in these will have to be changed for the signal you are looking at. 5 | This also is not a soup to nuts RE every signal out there, but a push in the right direction. 6 | The examples GRC above are targeted for AM signal. 7 | Lets say you need to look at a FM signal, you would change all the "complex to mag" to "quadrature demodulator", etc, etc. 8 | 9 | 10 | -------------------------------------------------------------------------------- /SoI/ReviewSoIWithNoise.grc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Fri Jun 12 03:12:07 2015 5 | 6 | options 7 | 8 | author 9 | Drew Redshift Porter 10 | 11 | 12 | window_size 13 | 1280, 1024 14 | 15 | 16 | category 17 | Custom 18 | 19 | 20 | comment 21 | 22 | 23 | 24 | description 25 | 26 | 27 | 28 | _enabled 29 | True 30 | 31 | 32 | _coordinate 33 | (10, 10) 34 | 35 | 36 | _rotation 37 | 0 38 | 39 | 40 | generate_options 41 | qt_gui 42 | 43 | 44 | id 45 | top_block 46 | 47 | 48 | max_nouts 49 | 0 50 | 51 | 52 | realtime_scheduling 53 | 54 | 55 | 56 | run_options 57 | prompt 58 | 59 | 60 | run 61 | True 62 | 63 | 64 | thread_safe_setters 65 | 66 | 67 | 68 | title 69 | 70 | 71 | 72 | 73 | variable_qtgui_range 74 | 75 | comment 76 | 77 | 78 | 79 | value 80 | 20e3 81 | 82 | 83 | _enabled 84 | True 85 | 86 | 87 | _coordinate 88 | (296, 11) 89 | 90 | 91 | gui_hint 92 | 93 | 94 | 95 | _rotation 96 | 0 97 | 98 | 99 | id 100 | NoiseIntroductionFreq 101 | 102 | 103 | label 104 | NoiseIntroductionFreq 105 | 106 | 107 | min_len 108 | 200 109 | 110 | 111 | orient 112 | Qt.Horizontal 113 | 114 | 115 | start 116 | 0 117 | 118 | 119 | step 120 | 1000 121 | 122 | 123 | stop 124 | 500e3 125 | 126 | 127 | rangeType 128 | float 129 | 130 | 131 | widget 132 | counter_slider 133 | 134 | 135 | 136 | variable 137 | 138 | comment 139 | 140 | 141 | 142 | _enabled 143 | True 144 | 145 | 146 | _coordinate 147 | (185, 10) 148 | 149 | 150 | _rotation 151 | 0 152 | 153 | 154 | id 155 | samp_rate 156 | 157 | 158 | value 159 | 1e6 160 | 161 | 162 | 163 | analog_sig_source_x 164 | 165 | amp 166 | 1 167 | 168 | 169 | alias 170 | 171 | 172 | 173 | comment 174 | 175 | 176 | 177 | affinity 178 | 179 | 180 | 181 | _enabled 182 | True 183 | 184 | 185 | freq 186 | NoiseIntroductionFreq 187 | 188 | 189 | _coordinate 190 | (48, 403) 191 | 192 | 193 | _rotation 194 | 0 195 | 196 | 197 | id 198 | analog_sig_source_x_0 199 | 200 | 201 | maxoutbuf 202 | 0 203 | 204 | 205 | minoutbuf 206 | 0 207 | 208 | 209 | offset 210 | 0 211 | 212 | 213 | type 214 | complex 215 | 216 | 217 | samp_rate 218 | samp_rate 219 | 220 | 221 | waveform 222 | analog.GR_COS_WAVE 223 | 224 | 225 | 226 | blocks_complex_to_float 227 | 228 | alias 229 | 230 | 231 | 232 | comment 233 | 234 | 235 | 236 | affinity 237 | 238 | 239 | 240 | _enabled 241 | True 242 | 243 | 244 | _coordinate 245 | (424, 265) 246 | 247 | 248 | _rotation 249 | 0 250 | 251 | 252 | id 253 | blocks_complex_to_float_0 254 | 255 | 256 | maxoutbuf 257 | 0 258 | 259 | 260 | minoutbuf 261 | 0 262 | 263 | 264 | vlen 265 | 1 266 | 267 | 268 | 269 | blocks_complex_to_float 270 | 271 | alias 272 | 273 | 274 | 275 | comment 276 | 277 | 278 | 279 | affinity 280 | 281 | 282 | 283 | _enabled 284 | True 285 | 286 | 287 | _coordinate 288 | (432, 362) 289 | 290 | 291 | _rotation 292 | 0 293 | 294 | 295 | id 296 | blocks_complex_to_float_0_0 297 | 298 | 299 | maxoutbuf 300 | 0 301 | 302 | 303 | minoutbuf 304 | 0 305 | 306 | 307 | vlen 308 | 1 309 | 310 | 311 | 312 | blocks_file_source 313 | 314 | alias 315 | 316 | 317 | 318 | comment 319 | 320 | 321 | 322 | affinity 323 | 324 | 325 | 326 | _enabled 327 | True 328 | 329 | 330 | file 331 | Your/File/Path/Here/Filename.cfile 332 | 333 | 334 | _coordinate 335 | (48, 107) 336 | 337 | 338 | _rotation 339 | 0 340 | 341 | 342 | id 343 | blocks_file_source_0 344 | 345 | 346 | maxoutbuf 347 | 0 348 | 349 | 350 | minoutbuf 351 | 0 352 | 353 | 354 | type 355 | complex 356 | 357 | 358 | repeat 359 | True 360 | 361 | 362 | vlen 363 | 1 364 | 365 | 366 | 367 | blocks_multiply_xx 368 | 369 | alias 370 | 371 | 372 | 373 | comment 374 | 375 | 376 | 377 | affinity 378 | 379 | 380 | 381 | _enabled 382 | True 383 | 384 | 385 | _coordinate 386 | (256, 361) 387 | 388 | 389 | _rotation 390 | 0 391 | 392 | 393 | id 394 | blocks_multiply_xx_0 395 | 396 | 397 | type 398 | complex 399 | 400 | 401 | maxoutbuf 402 | 0 403 | 404 | 405 | minoutbuf 406 | 0 407 | 408 | 409 | num_inputs 410 | 2 411 | 412 | 413 | vlen 414 | 1 415 | 416 | 417 | 418 | blocks_sub_xx 419 | 420 | alias 421 | 422 | 423 | 424 | comment 425 | 426 | 427 | 428 | affinity 429 | 430 | 431 | 432 | _enabled 433 | True 434 | 435 | 436 | _coordinate 437 | (640, 263) 438 | 439 | 440 | _rotation 441 | 0 442 | 443 | 444 | id 445 | blocks_sub_xx_0 446 | 447 | 448 | type 449 | float 450 | 451 | 452 | maxoutbuf 453 | 0 454 | 455 | 456 | minoutbuf 457 | 0 458 | 459 | 460 | num_inputs 461 | 2 462 | 463 | 464 | vlen 465 | 1 466 | 467 | 468 | 469 | blocks_sub_xx 470 | 471 | alias 472 | 473 | 474 | 475 | comment 476 | 477 | 478 | 479 | affinity 480 | 481 | 482 | 483 | _enabled 484 | True 485 | 486 | 487 | _coordinate 488 | (648, 361) 489 | 490 | 491 | _rotation 492 | 0 493 | 494 | 495 | id 496 | blocks_sub_xx_0_0 497 | 498 | 499 | type 500 | float 501 | 502 | 503 | maxoutbuf 504 | 0 505 | 506 | 507 | minoutbuf 508 | 0 509 | 510 | 511 | num_inputs 512 | 2 513 | 514 | 515 | vlen 516 | 1 517 | 518 | 519 | 520 | blocks_throttle 521 | 522 | alias 523 | 524 | 525 | 526 | comment 527 | 528 | 529 | 530 | affinity 531 | 532 | 533 | 534 | _enabled 535 | True 536 | 537 | 538 | _coordinate 539 | (88, 219) 540 | 541 | 542 | _rotation 543 | 0 544 | 545 | 546 | id 547 | blocks_throttle_0 548 | 549 | 550 | ignoretag 551 | True 552 | 553 | 554 | maxoutbuf 555 | 0 556 | 557 | 558 | minoutbuf 559 | 0 560 | 561 | 562 | samples_per_second 563 | samp_rate 564 | 565 | 566 | type 567 | complex 568 | 569 | 570 | vlen 571 | 1 572 | 573 | 574 | 575 | qtgui_time_sink_x 576 | 577 | autoscale 578 | False 579 | 580 | 581 | alias 582 | 583 | 584 | 585 | comment 586 | 587 | 588 | 589 | ctrlpanel 590 | False 591 | 592 | 593 | affinity 594 | 595 | 596 | 597 | entags 598 | True 599 | 600 | 601 | _enabled 602 | True 603 | 604 | 605 | _coordinate 606 | (896, 299) 607 | 608 | 609 | gui_hint 610 | 611 | 612 | 613 | _rotation 614 | 0 615 | 616 | 617 | grid 618 | False 619 | 620 | 621 | id 622 | qtgui_time_sink_x_0 623 | 624 | 625 | legend 626 | True 627 | 628 | 629 | alpha1 630 | 1.0 631 | 632 | 633 | color1 634 | "blue" 635 | 636 | 637 | label1 638 | 639 | 640 | 641 | marker1 642 | -1 643 | 644 | 645 | style1 646 | 1 647 | 648 | 649 | width1 650 | 1 651 | 652 | 653 | alpha10 654 | 1.0 655 | 656 | 657 | color10 658 | "blue" 659 | 660 | 661 | label10 662 | 663 | 664 | 665 | marker10 666 | -1 667 | 668 | 669 | style10 670 | 1 671 | 672 | 673 | width10 674 | 1 675 | 676 | 677 | alpha2 678 | 1.0 679 | 680 | 681 | color2 682 | "red" 683 | 684 | 685 | label2 686 | 687 | 688 | 689 | marker2 690 | -1 691 | 692 | 693 | style2 694 | 1 695 | 696 | 697 | width2 698 | 1 699 | 700 | 701 | alpha3 702 | 1.0 703 | 704 | 705 | color3 706 | "green" 707 | 708 | 709 | label3 710 | 711 | 712 | 713 | marker3 714 | -1 715 | 716 | 717 | style3 718 | 1 719 | 720 | 721 | width3 722 | 1 723 | 724 | 725 | alpha4 726 | 1.0 727 | 728 | 729 | color4 730 | "black" 731 | 732 | 733 | label4 734 | 735 | 736 | 737 | marker4 738 | -1 739 | 740 | 741 | style4 742 | 1 743 | 744 | 745 | width4 746 | 1 747 | 748 | 749 | alpha5 750 | 1.0 751 | 752 | 753 | color5 754 | "cyan" 755 | 756 | 757 | label5 758 | 759 | 760 | 761 | marker5 762 | -1 763 | 764 | 765 | style5 766 | 1 767 | 768 | 769 | width5 770 | 1 771 | 772 | 773 | alpha6 774 | 1.0 775 | 776 | 777 | color6 778 | "magenta" 779 | 780 | 781 | label6 782 | 783 | 784 | 785 | marker6 786 | -1 787 | 788 | 789 | style6 790 | 1 791 | 792 | 793 | width6 794 | 1 795 | 796 | 797 | alpha7 798 | 1.0 799 | 800 | 801 | color7 802 | "yellow" 803 | 804 | 805 | label7 806 | 807 | 808 | 809 | marker7 810 | -1 811 | 812 | 813 | style7 814 | 1 815 | 816 | 817 | width7 818 | 1 819 | 820 | 821 | alpha8 822 | 1.0 823 | 824 | 825 | color8 826 | "dark red" 827 | 828 | 829 | label8 830 | 831 | 832 | 833 | marker8 834 | -1 835 | 836 | 837 | style8 838 | 1 839 | 840 | 841 | width8 842 | 1 843 | 844 | 845 | alpha9 846 | 1.0 847 | 848 | 849 | color9 850 | "dark green" 851 | 852 | 853 | label9 854 | 855 | 856 | 857 | marker9 858 | -1 859 | 860 | 861 | style9 862 | 1 863 | 864 | 865 | width9 866 | 1 867 | 868 | 869 | name 870 | QT GUI Plot 871 | 872 | 873 | nconnections 874 | 2 875 | 876 | 877 | size 878 | 10240 879 | 880 | 881 | srate 882 | samp_rate 883 | 884 | 885 | tr_chan 886 | 0 887 | 888 | 889 | tr_delay 890 | 0 891 | 892 | 893 | tr_level 894 | 0.25 895 | 896 | 897 | tr_mode 898 | qtgui.TRIG_MODE_NORM 899 | 900 | 901 | tr_slope 902 | qtgui.TRIG_SLOPE_POS 903 | 904 | 905 | tr_tag 906 | "" 907 | 908 | 909 | type 910 | float 911 | 912 | 913 | update_time 914 | 0.10 915 | 916 | 917 | ylabel 918 | Amplitude 919 | 920 | 921 | yunit 922 | "" 923 | 924 | 925 | ymax 926 | 2 927 | 928 | 929 | ymin 930 | -2 931 | 932 | 933 | 934 | qtgui_waterfall_sink_x 935 | 936 | bw 937 | samp_rate 938 | 939 | 940 | alias 941 | 942 | 943 | 944 | fc 945 | 0 946 | 947 | 948 | comment 949 | 950 | 951 | 952 | affinity 953 | 954 | 955 | 956 | _enabled 957 | True 958 | 959 | 960 | fftsize 961 | 1024 962 | 963 | 964 | _coordinate 965 | (904, 99) 966 | 967 | 968 | gui_hint 969 | 970 | 971 | 972 | _rotation 973 | 0 974 | 975 | 976 | grid 977 | False 978 | 979 | 980 | id 981 | qtgui_waterfall_sink_x_0 982 | 983 | 984 | int_max 985 | 10 986 | 987 | 988 | int_min 989 | -140 990 | 991 | 992 | legend 993 | True 994 | 995 | 996 | alpha1 997 | 1.0 998 | 999 | 1000 | color1 1001 | 0 1002 | 1003 | 1004 | label1 1005 | 1006 | 1007 | 1008 | alpha10 1009 | 1.0 1010 | 1011 | 1012 | color10 1013 | 0 1014 | 1015 | 1016 | label10 1017 | 1018 | 1019 | 1020 | alpha2 1021 | 1.0 1022 | 1023 | 1024 | color2 1025 | 0 1026 | 1027 | 1028 | label2 1029 | 1030 | 1031 | 1032 | alpha3 1033 | 1.0 1034 | 1035 | 1036 | color3 1037 | 0 1038 | 1039 | 1040 | label3 1041 | 1042 | 1043 | 1044 | alpha4 1045 | 1.0 1046 | 1047 | 1048 | color4 1049 | 0 1050 | 1051 | 1052 | label4 1053 | 1054 | 1055 | 1056 | alpha5 1057 | 1.0 1058 | 1059 | 1060 | color5 1061 | 0 1062 | 1063 | 1064 | label5 1065 | 1066 | 1067 | 1068 | alpha6 1069 | 1.0 1070 | 1071 | 1072 | color6 1073 | 0 1074 | 1075 | 1076 | label6 1077 | 1078 | 1079 | 1080 | alpha7 1081 | 1.0 1082 | 1083 | 1084 | color7 1085 | 0 1086 | 1087 | 1088 | label7 1089 | 1090 | 1091 | 1092 | alpha8 1093 | 1.0 1094 | 1095 | 1096 | color8 1097 | 0 1098 | 1099 | 1100 | label8 1101 | 1102 | 1103 | 1104 | alpha9 1105 | 1.0 1106 | 1107 | 1108 | color9 1109 | 0 1110 | 1111 | 1112 | label9 1113 | 1114 | 1115 | 1116 | maxoutbuf 1117 | 0 1118 | 1119 | 1120 | minoutbuf 1121 | 0 1122 | 1123 | 1124 | name 1125 | QT GUI Plot 1126 | 1127 | 1128 | nconnections 1129 | 1 1130 | 1131 | 1132 | showports 1133 | True 1134 | 1135 | 1136 | freqhalf 1137 | True 1138 | 1139 | 1140 | type 1141 | complex 1142 | 1143 | 1144 | update_time 1145 | 0.10 1146 | 1147 | 1148 | wintype 1149 | firdes.WIN_BLACKMAN_hARRIS 1150 | 1151 | 1152 | 1153 | analog_sig_source_x_0 1154 | blocks_multiply_xx_0 1155 | 0 1156 | 1 1157 | 1158 | 1159 | blocks_complex_to_float_0 1160 | blocks_sub_xx_0 1161 | 1 1162 | 1 1163 | 1164 | 1165 | blocks_complex_to_float_0 1166 | blocks_sub_xx_0 1167 | 0 1168 | 0 1169 | 1170 | 1171 | blocks_complex_to_float_0_0 1172 | blocks_sub_xx_0_0 1173 | 1 1174 | 1 1175 | 1176 | 1177 | blocks_complex_to_float_0_0 1178 | blocks_sub_xx_0_0 1179 | 0 1180 | 0 1181 | 1182 | 1183 | blocks_file_source_0 1184 | blocks_throttle_0 1185 | 0 1186 | 0 1187 | 1188 | 1189 | blocks_multiply_xx_0 1190 | blocks_complex_to_float_0_0 1191 | 0 1192 | 0 1193 | 1194 | 1195 | blocks_sub_xx_0 1196 | qtgui_time_sink_x_0 1197 | 0 1198 | 0 1199 | 1200 | 1201 | blocks_sub_xx_0_0 1202 | qtgui_time_sink_x_0 1203 | 0 1204 | 1 1205 | 1206 | 1207 | blocks_throttle_0 1208 | blocks_complex_to_float_0 1209 | 0 1210 | 0 1211 | 1212 | 1213 | blocks_throttle_0 1214 | blocks_multiply_xx_0 1215 | 0 1216 | 0 1217 | 1218 | 1219 | blocks_throttle_0 1220 | qtgui_waterfall_sink_x_0 1221 | 0 1222 | 0 1223 | 1224 | 1225 | -------------------------------------------------------------------------------- /SoI/SimpleAMDemodulation.grc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Fri Jun 12 03:12:07 2015 5 | 6 | options 7 | 8 | author 9 | Drew Redshift Porter 10 | 11 | 12 | window_size 13 | 14 | 15 | 16 | category 17 | Custom 18 | 19 | 20 | comment 21 | 22 | 23 | 24 | description 25 | 26 | 27 | 28 | _enabled 29 | True 30 | 31 | 32 | _coordinate 33 | (8, 8) 34 | 35 | 36 | _rotation 37 | 0 38 | 39 | 40 | generate_options 41 | qt_gui 42 | 43 | 44 | id 45 | top_block 46 | 47 | 48 | max_nouts 49 | 0 50 | 51 | 52 | realtime_scheduling 53 | 54 | 55 | 56 | run_options 57 | prompt 58 | 59 | 60 | run 61 | True 62 | 63 | 64 | thread_safe_setters 65 | 66 | 67 | 68 | title 69 | 70 | 71 | 72 | 73 | variable 74 | 75 | comment 76 | 77 | 78 | 79 | _enabled 80 | True 81 | 82 | 83 | _coordinate 84 | (192, 19) 85 | 86 | 87 | _rotation 88 | 0 89 | 90 | 91 | id 92 | samp_rate 93 | 94 | 95 | value 96 | 1e6 97 | 98 | 99 | 100 | blocks_complex_to_float 101 | 102 | alias 103 | 104 | 105 | 106 | comment 107 | 108 | 109 | 110 | affinity 111 | 112 | 113 | 114 | _enabled 115 | True 116 | 117 | 118 | _coordinate 119 | (440, 113) 120 | 121 | 122 | _rotation 123 | 0 124 | 125 | 126 | id 127 | blocks_complex_to_float_0 128 | 129 | 130 | maxoutbuf 131 | 0 132 | 133 | 134 | minoutbuf 135 | 0 136 | 137 | 138 | vlen 139 | 1 140 | 141 | 142 | 143 | blocks_complex_to_mag 144 | 145 | alias 146 | 147 | 148 | 149 | comment 150 | 151 | 152 | 153 | affinity 154 | 155 | 156 | 157 | _enabled 158 | True 159 | 160 | 161 | _coordinate 162 | (80, 233) 163 | 164 | 165 | _rotation 166 | 0 167 | 168 | 169 | id 170 | blocks_complex_to_mag_0 171 | 172 | 173 | maxoutbuf 174 | 0 175 | 176 | 177 | minoutbuf 178 | 0 179 | 180 | 181 | vlen 182 | 1 183 | 184 | 185 | 186 | blocks_file_source 187 | 188 | alias 189 | 190 | 191 | 192 | comment 193 | 194 | 195 | 196 | affinity 197 | 198 | 199 | 200 | _enabled 201 | True 202 | 203 | 204 | file 205 | /Your/File/Path/Here/Filename.cfile 206 | 207 | 208 | _coordinate 209 | (8, 115) 210 | 211 | 212 | _rotation 213 | 0 214 | 215 | 216 | id 217 | blocks_file_source_0 218 | 219 | 220 | maxoutbuf 221 | 0 222 | 223 | 224 | minoutbuf 225 | 0 226 | 227 | 228 | type 229 | complex 230 | 231 | 232 | repeat 233 | False 234 | 235 | 236 | vlen 237 | 1 238 | 239 | 240 | 241 | blocks_sub_xx 242 | 243 | alias 244 | 245 | 246 | 247 | comment 248 | 249 | 250 | 251 | affinity 252 | 253 | 254 | 255 | _enabled 256 | True 257 | 258 | 259 | _coordinate 260 | (656, 113) 261 | 262 | 263 | _rotation 264 | 0 265 | 266 | 267 | id 268 | blocks_sub_xx_0 269 | 270 | 271 | type 272 | float 273 | 274 | 275 | maxoutbuf 276 | 0 277 | 278 | 279 | minoutbuf 280 | 0 281 | 282 | 283 | num_inputs 284 | 2 285 | 286 | 287 | vlen 288 | 1 289 | 290 | 291 | 292 | blocks_threshold_ff 293 | 294 | alias 295 | 296 | 297 | 298 | comment 299 | 300 | 301 | 302 | affinity 303 | 304 | 305 | 306 | _enabled 307 | True 308 | 309 | 310 | _coordinate 311 | (472, 291) 312 | 313 | 314 | _rotation 315 | 0 316 | 317 | 318 | high 319 | .35 320 | 321 | 322 | id 323 | blocks_threshold_ff_0 324 | 325 | 326 | init 327 | 0 328 | 329 | 330 | low 331 | .25 332 | 333 | 334 | maxoutbuf 335 | 0 336 | 337 | 338 | minoutbuf 339 | 0 340 | 341 | 342 | 343 | blocks_throttle 344 | 345 | alias 346 | 347 | 348 | 349 | comment 350 | 351 | 352 | 353 | affinity 354 | 355 | 356 | 357 | _enabled 358 | True 359 | 360 | 361 | _coordinate 362 | (240, 123) 363 | 364 | 365 | _rotation 366 | 0 367 | 368 | 369 | id 370 | blocks_throttle_0 371 | 372 | 373 | ignoretag 374 | True 375 | 376 | 377 | maxoutbuf 378 | 0 379 | 380 | 381 | minoutbuf 382 | 0 383 | 384 | 385 | samples_per_second 386 | samp_rate 387 | 388 | 389 | type 390 | complex 391 | 392 | 393 | vlen 394 | 1 395 | 396 | 397 | 398 | qtgui_time_sink_x 399 | 400 | autoscale 401 | False 402 | 403 | 404 | alias 405 | 406 | 407 | 408 | comment 409 | 410 | 411 | 412 | ctrlpanel 413 | False 414 | 415 | 416 | affinity 417 | 418 | 419 | 420 | entags 421 | True 422 | 423 | 424 | _enabled 425 | True 426 | 427 | 428 | _coordinate 429 | (792, 201) 430 | 431 | 432 | gui_hint 433 | 434 | 435 | 436 | _rotation 437 | 0 438 | 439 | 440 | grid 441 | False 442 | 443 | 444 | id 445 | qtgui_time_sink_x_0 446 | 447 | 448 | legend 449 | True 450 | 451 | 452 | alpha1 453 | 1.0 454 | 455 | 456 | color1 457 | "blue" 458 | 459 | 460 | label1 461 | 462 | 463 | 464 | marker1 465 | -1 466 | 467 | 468 | style1 469 | 1 470 | 471 | 472 | width1 473 | 1 474 | 475 | 476 | alpha10 477 | 1.0 478 | 479 | 480 | color10 481 | "blue" 482 | 483 | 484 | label10 485 | 486 | 487 | 488 | marker10 489 | -1 490 | 491 | 492 | style10 493 | 1 494 | 495 | 496 | width10 497 | 1 498 | 499 | 500 | alpha2 501 | 1.0 502 | 503 | 504 | color2 505 | "red" 506 | 507 | 508 | label2 509 | 510 | 511 | 512 | marker2 513 | -1 514 | 515 | 516 | style2 517 | 1 518 | 519 | 520 | width2 521 | 1 522 | 523 | 524 | alpha3 525 | 1.0 526 | 527 | 528 | color3 529 | "green" 530 | 531 | 532 | label3 533 | 534 | 535 | 536 | marker3 537 | -1 538 | 539 | 540 | style3 541 | 1 542 | 543 | 544 | width3 545 | 1 546 | 547 | 548 | alpha4 549 | 1.0 550 | 551 | 552 | color4 553 | "black" 554 | 555 | 556 | label4 557 | 558 | 559 | 560 | marker4 561 | -1 562 | 563 | 564 | style4 565 | 1 566 | 567 | 568 | width4 569 | 1 570 | 571 | 572 | alpha5 573 | 1.0 574 | 575 | 576 | color5 577 | "cyan" 578 | 579 | 580 | label5 581 | 582 | 583 | 584 | marker5 585 | -1 586 | 587 | 588 | style5 589 | 1 590 | 591 | 592 | width5 593 | 1 594 | 595 | 596 | alpha6 597 | 1.0 598 | 599 | 600 | color6 601 | "magenta" 602 | 603 | 604 | label6 605 | 606 | 607 | 608 | marker6 609 | -1 610 | 611 | 612 | style6 613 | 1 614 | 615 | 616 | width6 617 | 1 618 | 619 | 620 | alpha7 621 | 1.0 622 | 623 | 624 | color7 625 | "yellow" 626 | 627 | 628 | label7 629 | 630 | 631 | 632 | marker7 633 | -1 634 | 635 | 636 | style7 637 | 1 638 | 639 | 640 | width7 641 | 1 642 | 643 | 644 | alpha8 645 | 1.0 646 | 647 | 648 | color8 649 | "dark red" 650 | 651 | 652 | label8 653 | 654 | 655 | 656 | marker8 657 | -1 658 | 659 | 660 | style8 661 | 1 662 | 663 | 664 | width8 665 | 1 666 | 667 | 668 | alpha9 669 | 1.0 670 | 671 | 672 | color9 673 | "dark green" 674 | 675 | 676 | label9 677 | 678 | 679 | 680 | marker9 681 | -1 682 | 683 | 684 | style9 685 | 1 686 | 687 | 688 | width9 689 | 1 690 | 691 | 692 | name 693 | "" 694 | 695 | 696 | nconnections 697 | 3 698 | 699 | 700 | size 701 | 1024 702 | 703 | 704 | srate 705 | samp_rate 706 | 707 | 708 | tr_chan 709 | 0 710 | 711 | 712 | tr_delay 713 | 0 714 | 715 | 716 | tr_level 717 | 0.0 718 | 719 | 720 | tr_mode 721 | qtgui.TRIG_MODE_FREE 722 | 723 | 724 | tr_slope 725 | qtgui.TRIG_SLOPE_POS 726 | 727 | 728 | tr_tag 729 | "" 730 | 731 | 732 | type 733 | float 734 | 735 | 736 | update_time 737 | 0.10 738 | 739 | 740 | ylabel 741 | Amplitude 742 | 743 | 744 | yunit 745 | "" 746 | 747 | 748 | ymax 749 | 1 750 | 751 | 752 | ymin 753 | -1 754 | 755 | 756 | 757 | blocks_complex_to_float_0 758 | blocks_sub_xx_0 759 | 1 760 | 1 761 | 762 | 763 | blocks_complex_to_float_0 764 | blocks_sub_xx_0 765 | 0 766 | 0 767 | 768 | 769 | blocks_complex_to_mag_0 770 | blocks_threshold_ff_0 771 | 0 772 | 0 773 | 774 | 775 | blocks_complex_to_mag_0 776 | qtgui_time_sink_x_0 777 | 0 778 | 1 779 | 780 | 781 | blocks_file_source_0 782 | blocks_throttle_0 783 | 0 784 | 0 785 | 786 | 787 | blocks_sub_xx_0 788 | qtgui_time_sink_x_0 789 | 0 790 | 0 791 | 792 | 793 | blocks_threshold_ff_0 794 | qtgui_time_sink_x_0 795 | 0 796 | 2 797 | 798 | 799 | blocks_throttle_0 800 | blocks_complex_to_float_0 801 | 0 802 | 0 803 | 804 | 805 | blocks_throttle_0 806 | blocks_complex_to_mag_0 807 | 0 808 | 0 809 | 810 | 811 | -------------------------------------------------------------------------------- /SoI/TwoStageDownsample.grc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Fri Jun 12 03:12:07 2015 5 | 6 | options 7 | 8 | author 9 | Drew Redshift Porter 10 | 11 | 12 | window_size 13 | 1280, 1024 14 | 15 | 16 | category 17 | Custom 18 | 19 | 20 | comment 21 | 22 | 23 | 24 | description 25 | 26 | 27 | 28 | _enabled 29 | True 30 | 31 | 32 | _coordinate 33 | (10, 10) 34 | 35 | 36 | _rotation 37 | 0 38 | 39 | 40 | generate_options 41 | no_gui 42 | 43 | 44 | id 45 | top_block 46 | 47 | 48 | max_nouts 49 | 0 50 | 51 | 52 | realtime_scheduling 53 | 54 | 55 | 56 | run_options 57 | run 58 | 59 | 60 | run 61 | True 62 | 63 | 64 | thread_safe_setters 65 | 66 | 67 | 68 | title 69 | 70 | 71 | 72 | 73 | variable 74 | 75 | comment 76 | 77 | 78 | 79 | _enabled 80 | True 81 | 82 | 83 | _coordinate 84 | (472, 11) 85 | 86 | 87 | _rotation 88 | 0 89 | 90 | 91 | id 92 | LowPassFilterCutoff 93 | 94 | 95 | value 96 | 20e3 97 | 98 | 99 | 100 | variable 101 | 102 | comment 103 | 104 | 105 | 106 | _enabled 107 | True 108 | 109 | 110 | _coordinate 111 | (304, 11) 112 | 113 | 114 | _rotation 115 | 0 116 | 117 | 118 | id 119 | LowPassFilterDecimation 120 | 121 | 122 | value 123 | 13 124 | 125 | 126 | 127 | variable 128 | 129 | comment 130 | 131 | 132 | 133 | _enabled 134 | True 135 | 136 | 137 | _coordinate 138 | (206, 10) 139 | 140 | 141 | _rotation 142 | 0 143 | 144 | 145 | id 146 | samp_rate 147 | 148 | 149 | value 150 | 1e6 151 | 152 | 153 | 154 | blocks_add_const_vxx 155 | 156 | alias 157 | 158 | 159 | 160 | comment 161 | 162 | 163 | 164 | const 165 | -0.5 166 | 167 | 168 | affinity 169 | 170 | 171 | 172 | _enabled 173 | True 174 | 175 | 176 | _coordinate 177 | (640, 291) 178 | 179 | 180 | _rotation 181 | 0 182 | 183 | 184 | id 185 | blocks_add_const_vxx_0_0 186 | 187 | 188 | type 189 | float 190 | 191 | 192 | maxoutbuf 193 | 0 194 | 195 | 196 | minoutbuf 197 | 0 198 | 199 | 200 | vlen 201 | 1 202 | 203 | 204 | 205 | blocks_complex_to_mag 206 | 207 | alias 208 | 209 | 210 | 211 | comment 212 | 213 | 214 | 215 | affinity 216 | 217 | 218 | 219 | _enabled 220 | True 221 | 222 | 223 | _coordinate 224 | (48, 297) 225 | 226 | 227 | _rotation 228 | 0 229 | 230 | 231 | id 232 | blocks_complex_to_mag_0_0 233 | 234 | 235 | maxoutbuf 236 | 0 237 | 238 | 239 | minoutbuf 240 | 0 241 | 242 | 243 | vlen 244 | 1 245 | 246 | 247 | 248 | blocks_file_sink 249 | 250 | append 251 | False 252 | 253 | 254 | alias 255 | 256 | 257 | 258 | comment 259 | 260 | 261 | 262 | affinity 263 | 264 | 265 | 266 | _enabled 267 | True 268 | 269 | 270 | file 271 | /Your/File/Save/Path/Here/Filename.bin 272 | 273 | 274 | _coordinate 275 | (240, 483) 276 | 277 | 278 | _rotation 279 | 0 280 | 281 | 282 | id 283 | blocks_file_sink_0 284 | 285 | 286 | type 287 | byte 288 | 289 | 290 | unbuffered 291 | False 292 | 293 | 294 | vlen 295 | 1 296 | 297 | 298 | 299 | blocks_file_source 300 | 301 | alias 302 | 303 | 304 | 305 | comment 306 | 307 | 308 | 309 | affinity 310 | 311 | 312 | 313 | _enabled 314 | True 315 | 316 | 317 | file 318 | /Your/File/Path/Here/Filename.cfile 319 | 320 | 321 | _coordinate 322 | (16, 115) 323 | 324 | 325 | _rotation 326 | 0 327 | 328 | 329 | id 330 | blocks_file_source_0 331 | 332 | 333 | maxoutbuf 334 | 0 335 | 336 | 337 | minoutbuf 338 | 0 339 | 340 | 341 | type 342 | complex 343 | 344 | 345 | repeat 346 | False 347 | 348 | 349 | vlen 350 | 1 351 | 352 | 353 | 354 | blocks_threshold_ff 355 | 356 | alias 357 | 358 | 359 | 360 | comment 361 | 362 | 363 | 364 | affinity 365 | 366 | 367 | 368 | _enabled 369 | True 370 | 371 | 372 | _coordinate 373 | (240, 275) 374 | 375 | 376 | _rotation 377 | 0 378 | 379 | 380 | high 381 | 0.3 382 | 383 | 384 | id 385 | blocks_threshold_ff_0_0 386 | 387 | 388 | init 389 | 0 390 | 391 | 392 | low 393 | 0.25 394 | 395 | 396 | maxoutbuf 397 | 0 398 | 399 | 400 | minoutbuf 401 | 0 402 | 403 | 404 | 405 | blocks_throttle 406 | 407 | alias 408 | 409 | 410 | 411 | comment 412 | 413 | 414 | 415 | affinity 416 | 417 | 418 | 419 | _enabled 420 | 1 421 | 422 | 423 | _coordinate 424 | (248, 123) 425 | 426 | 427 | _rotation 428 | 0 429 | 430 | 431 | id 432 | blocks_throttle_0 433 | 434 | 435 | ignoretag 436 | True 437 | 438 | 439 | maxoutbuf 440 | 0 441 | 442 | 443 | minoutbuf 444 | 0 445 | 446 | 447 | samples_per_second 448 | samp_rate 449 | 450 | 451 | type 452 | complex 453 | 454 | 455 | vlen 456 | 1 457 | 458 | 459 | 460 | digital_binary_slicer_fb 461 | 462 | alias 463 | 464 | 465 | 466 | comment 467 | 468 | 469 | 470 | affinity 471 | 472 | 473 | 474 | _enabled 475 | True 476 | 477 | 478 | _coordinate 479 | (48, 505) 480 | 481 | 482 | _rotation 483 | 0 484 | 485 | 486 | id 487 | digital_binary_slicer_fb_0 488 | 489 | 490 | maxoutbuf 491 | 0 492 | 493 | 494 | minoutbuf 495 | 0 496 | 497 | 498 | 499 | low_pass_filter 500 | 501 | beta 502 | 6.76 503 | 504 | 505 | alias 506 | 507 | 508 | 509 | comment 510 | 511 | 512 | 513 | affinity 514 | 515 | 516 | 517 | cutoff_freq 518 | LowPassFilterCutoff 519 | 520 | 521 | decim 522 | LowPassFilterDecimation 523 | 524 | 525 | _enabled 526 | True 527 | 528 | 529 | type 530 | fir_filter_ccf 531 | 532 | 533 | _coordinate 534 | (424, 75) 535 | 536 | 537 | _rotation 538 | 0 539 | 540 | 541 | gain 542 | 1 543 | 544 | 545 | id 546 | low_pass_filter_0 547 | 548 | 549 | interp 550 | 1 551 | 552 | 553 | maxoutbuf 554 | 0 555 | 556 | 557 | minoutbuf 558 | 0 559 | 560 | 561 | samp_rate 562 | samp_rate 563 | 564 | 565 | width 566 | 10e3 567 | 568 | 569 | win 570 | firdes.WIN_HAMMING 571 | 572 | 573 | 574 | rational_resampler_xxx 575 | 576 | alias 577 | 578 | 579 | 580 | comment 581 | 582 | 583 | 584 | affinity 585 | 586 | 587 | 588 | decim 589 | 125 590 | 591 | 592 | _enabled 593 | True 594 | 595 | 596 | fbw 597 | 0 598 | 599 | 600 | _coordinate 601 | (632, 99) 602 | 603 | 604 | _rotation 605 | 0 606 | 607 | 608 | id 609 | rational_resampler_xxx_1 610 | 611 | 612 | interp 613 | 48 614 | 615 | 616 | maxoutbuf 617 | 0 618 | 619 | 620 | minoutbuf 621 | 0 622 | 623 | 624 | taps 625 | 626 | 627 | 628 | type 629 | ccc 630 | 631 | 632 | 633 | rational_resampler_xxx 634 | 635 | alias 636 | 637 | 638 | 639 | comment 640 | 641 | 642 | 643 | affinity 644 | 645 | 646 | 647 | decim 648 | 8 649 | 650 | 651 | _enabled 652 | True 653 | 654 | 655 | fbw 656 | 0 657 | 658 | 659 | _coordinate 660 | (424, 267) 661 | 662 | 663 | _rotation 664 | 0 665 | 666 | 667 | id 668 | rational_resampler_xxx_1_0 669 | 670 | 671 | interp 672 | 1 673 | 674 | 675 | maxoutbuf 676 | 0 677 | 678 | 679 | minoutbuf 680 | 0 681 | 682 | 683 | taps 684 | [1] 685 | 686 | 687 | type 688 | fff 689 | 690 | 691 | 692 | blocks_add_const_vxx_0_0 693 | digital_binary_slicer_fb_0 694 | 0 695 | 0 696 | 697 | 698 | blocks_complex_to_mag_0_0 699 | blocks_threshold_ff_0_0 700 | 0 701 | 0 702 | 703 | 704 | blocks_file_source_0 705 | blocks_throttle_0 706 | 0 707 | 0 708 | 709 | 710 | blocks_threshold_ff_0_0 711 | rational_resampler_xxx_1_0 712 | 0 713 | 0 714 | 715 | 716 | blocks_throttle_0 717 | low_pass_filter_0 718 | 0 719 | 0 720 | 721 | 722 | digital_binary_slicer_fb_0 723 | blocks_file_sink_0 724 | 0 725 | 0 726 | 727 | 728 | low_pass_filter_0 729 | rational_resampler_xxx_1 730 | 0 731 | 0 732 | 733 | 734 | rational_resampler_xxx_1 735 | blocks_complex_to_mag_0_0 736 | 0 737 | 0 738 | 739 | 740 | rational_resampler_xxx_1_0 741 | blocks_add_const_vxx_0_0 742 | 0 743 | 0 744 | 745 | 746 | -------------------------------------------------------------------------------- /redz-sigint.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import cmd 3 | import time 4 | import subprocess 5 | 6 | # IMSI CATCHER CONFIG 7 | SMQUEUE_BIN = "/OpenBTS/smqueue" 8 | SIPAUTHSERVER_BIN = "/OpenBTS/sipauthserve" 9 | OPENBTS_BIN = "/OpenBTS/OpenBTS" 10 | OPENBTSCLI_BIN = "/OpenBTS/OpenBTSCLI" 11 | FREESWITCH_BIN = "/usr/bin/freeswitch" 12 | 13 | # ANALYZE SIGNAL CONFIG 14 | GNU_RADIO_COMPANION_BIN = "/usr/local/bin/gnuradio-companion" 15 | SIGNALS_OF_INTREST_GRCS_DIR = "/home/sigintjeep/SoI/" 16 | 17 | # ANALYZE SIGNAL FILE NAMES 18 | CAPTURE_SOI_FILENAME = 'CaptureSoI.grc' 19 | DEMOD_SOI_FILENAME = 'SimpleAMDemodulation.grc' 20 | BASIC_ANALYZE_SOI_FILENAME = 'RewiewSoIWithNoise.grc' 21 | DOWNSAMPLE_SOI_FILENAME = 'TwoStageDownsample.grc' 22 | CLOCK_RECOVERY_SOI_FILENAME = 'ClockRecoveryPoC.grc' 23 | REPLAY_SOI_FILENAME = 'ReplaySoI.grc' 24 | 25 | # Freq Jammer Config 26 | FREQ_JAMMER_FILE_DIR = '/home/sigintjeep/' 27 | 28 | # Freq Jammer Files 29 | FREQ_JAMMER_CELL_ATANDT_FILENAME = 'CellJammerATANDT.py' 30 | 31 | # IOT Config Files 32 | IOT_FILE_DIR = '/home/sigintjeep/.scapy/radio/' 33 | 34 | # IOT FILES 35 | IOT_BTLE_FILENAME = 'BT4LE.grc' 36 | IOT_ZIGBEE_FILENAME = 'Zigbee.grc' 37 | IOT_ZWAVE_FILENAME = 'Zwave.grc' 38 | 39 | class IOTType: 40 | BTLE = 1 41 | ZIGBEE = 2 42 | ZWAVE = 3 43 | 44 | class FREQJAMType: 45 | CELL_ATANDT = 1 46 | 47 | class SOIType: 48 | CAP_SOI = 1 49 | DEMOD_SOI = 2 50 | BASIC_ANALYZE_SOI = 3 51 | DOWN_SAMPLE_SOI = 5 52 | CLOCK_RECOVERY_SOI = 6 53 | REPLAY_SOI = 7 54 | 55 | class RedzSigint: 56 | 57 | smqueue_process = None 58 | sipauthserve_process = None 59 | openbts_process = None 60 | openbtscli_process = None 61 | freeswitch_process = None 62 | gnuradio_companion_process = None 63 | 64 | # Jammer processes 65 | cell_atandt_process = None 66 | 67 | @staticmethod 68 | def show_banner(): 69 | print ''' 70 | .______ _______ _______ ________ _______. __ _______ __ .__ __. .___________. 71 | | _ \ | ____|| \ | / / || | / _____|| | | \ | | | | 72 | | |_) | | |__ | .--. |`---/ / | (----`| | | | __ | | | \| | `---| |----` 73 | | / | __| | | | | / / \ \ | | | | |_ | | | | . ` | | | 74 | | |\ \----.| |____ | '--' | / /----. .----) | | | | |__| | | | | |\ | | | 75 | | _| `._____||_______||_______/ /________| |_______/ |__| \______| |__| |__| \__| |__| 76 | ''' 77 | 78 | print 'Redz SIGINT Beta Release\n' 79 | print 'This program calls many other programs, which you should already have installed.' 80 | print 'If you do not have them installed run the install option\n' 81 | 82 | @staticmethod 83 | def show_options(): 84 | print 'Available Commands' 85 | print 'analyzeSig - Analyze Unknown Signals of Intrest (SoI)' 86 | print 'p25Cap - P25 Capture' 87 | print 'imsiCatch - IMSI Catcher' 88 | print 'freqJam - Frequency Jammer' 89 | print 'iot - Internet of Things' 90 | print 'help - Help Menu' 91 | print '\n' 92 | 93 | @staticmethod 94 | def start_ismi_catcher(): 95 | print '[*] Starting Freeswitch' 96 | RedzSigint.freeswitch_process = subprocess.Popen([FREESWITCH_BIN], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 97 | print '[*] Starting Smqueue' 98 | RedzSigint.smqueue_process = subprocess.Popen([SMQUEUE_BIN], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 99 | print '[*] Starting SipAuthServe' 100 | RedzSigint.sipauthserve_process = subprocess.Popen([SIPAUTHSERVER_BIN], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 101 | print '[*] Starting OpenBTS' 102 | RedzSigint.openbts_process = subprocess.Popen([OPENBTS_BIN], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 103 | time.sleep(30) 104 | print '[*] Starting OpenBTSCli' 105 | RedzSigint.openbts_process = subprocess.Popen(['gnome-terminal','-e',OPENBTSCLI_BIN],stderr=subprocess.PIPE) 106 | 107 | @staticmethod 108 | def shutdown_ismi_catcher(): 109 | if RedzSigint.smqueue_process: 110 | print '[*] Shutting Down Smqueue' 111 | RedzSigint.smqueue_process.kill() 112 | if RedzSigint.sipauthserve_process: 113 | print '[*] Shutting Down SipAuthServe' 114 | RedzSigint.sipauthserve_process.kill() 115 | if RedzSigint.openbts_process: 116 | print '[*] Shutting Down OpenBts' 117 | RedzSigint.openbts_process.kill() 118 | if RedzSigint.freeswitch_process: 119 | print '[*] Shutting Down Freeswitch' 120 | RedzSigint.freeswitch_process.kill() 121 | 122 | @staticmethod 123 | def run_soi(soi_type): 124 | if soi_type == SOIType.CAP_SOI: 125 | RedzSigint.gnuradio_companion_process = subprocess.Popen([GNU_RADIO_COMPANION_BIN, SIGNALS_OF_INTREST_GRCS_DIR + CAPTURE_SOI_FILENAME], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 126 | return 127 | if soi_type == SOIType.DEMOD_SOI: 128 | RedzSigint.gnuradio_companion_process = subprocess.Popen([GNU_RADIO_COMPANION_BIN, SIGNALS_OF_INTREST_GRCS_DIR + DEMOD_SOI_FILENAME], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 129 | return 130 | if soi_type == SOIType.BASIC_ANALYZE_SOI: 131 | RedzSigint.gnuradio_companion_process = subprocess.Popen([GNU_RADIO_COMPANION_BIN, SIGNALS_OF_INTREST_GRCS_DIR + BASIC_ANALYZE_SOI_FILENAME], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 132 | return 133 | if soi_type == SOIType.DOWN_SAMPLE_SOI: 134 | RedzSigint.gnuradio_companion_process = subprocess.Popen([GNU_RADIO_COMPANION_BIN, SIGNALS_OF_INTREST_GRCS_DIR + DOWNSAMPLE_SOI_FILENAME], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 135 | return 136 | if soi_type == SOIType.CLOCK_RECOVERY_SOI: 137 | RedzSigint.gnuradio_companion_process = subprocess.Popen([GNU_RADIO_COMPANION_BIN, SIGNALS_OF_INTREST_GRCS_DIR + CLOCK_RECOVERY_SOI_FILENAME], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 138 | return 139 | if soi_type == SOIType.REPLAY_SOI: 140 | RedzSigint.gnuradio_companion_process = subprocess.Popen([GNU_RADIO_COMPANION_BIN, SIGNALS_OF_INTREST_GRCS_DIR + REPLAY_SOI_FILENAME], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 141 | return 142 | else: 143 | print '[!] Unknown SOI Option' 144 | 145 | @staticmethod 146 | def run_jammer(jammer_type): 147 | if jammer_type == FREQJAMType.CELL_ATANDT: 148 | RedzSigint.cell_atandt_process = subprocess.Popen(['python',FREQ_JAMMER_FILE_DIR+FREQ_JAMMER_CELL_ATANDT_FILENAME], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 149 | print '[*] Freq Jammer CELL_ATANDT Running' 150 | else: 151 | print '[!] Unknown Freq Jammer' 152 | 153 | @staticmethod 154 | def run_iot(iot_type): 155 | if iot_type == IOTType.BTLE: 156 | RedzSigint.gnuradio_companion_process = subprocess.Popen([GNU_RADIO_COMPANION_BIN, IOT_FILE_DIR + IOT_BTLE_FILENAME], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 157 | return 158 | elif iot_type == IOTType.ZIGBEE: 159 | RedzSigint.gnuradio_companion_process = subprocess.Popen([GNU_RADIO_COMPANION_BIN, IOT_FILE_DIR + IOT_ZIGBEE_FILENAME], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 160 | return 161 | elif iot_type == IOTType.ZWAVE: 162 | RedzSigint.gnuradio_companion_process = subprocess.Popen([GNU_RADIO_COMPANION_BIN, IOT_FILE_DIR + IOT_ZWAVE_FILENAME], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 163 | return 164 | else: 165 | print '[!] Unknown IOT Type' 166 | 167 | @staticmethod 168 | def shutdown_jammers(): 169 | if RedzSigint.cell_atandt_process: 170 | print '[*] Shutting down Freq Jammer CELL_ATANDT' 171 | RedzSigint.cell_atandt_process.kill() 172 | 173 | @staticmethod 174 | def convert_analyze_to_enum(arg): 175 | lowerCase = arg.lower() 176 | 177 | if lowerCase == 'capsoi': 178 | return 1 179 | elif lowerCase == 'demodsoi': 180 | return 2 181 | elif lowerCase == 'basicanalyzesoi': 182 | return 3 183 | elif lowerCase == 'downsamplesoi': 184 | return 5 185 | elif lowerCase == 'clockrecoverysoi': 186 | return 6 187 | elif lowerCase == 'replaysoi': 188 | return 7 189 | else: 190 | return 1000 191 | 192 | @staticmethod 193 | def convert_jammer_to_enum(arg): 194 | lowerCase = arg.lower() 195 | 196 | if lowerCase == 'cell-atandt': 197 | return 1 198 | else: 199 | return 1000 200 | 201 | @staticmethod 202 | def convert_iot_to_enum(arg): 203 | lowerCase = arg.lower() 204 | 205 | if lowerCase == 'btle': 206 | return 1 207 | elif lowerCase == 'zigbee': 208 | return 2 209 | elif lowerCase == 'zwave': 210 | return 3 211 | else: 212 | return 1000 213 | 214 | class CommandLineHandler(cmd.Cmd): 215 | """Simple command processor example.""" 216 | 217 | prompt = 'RS > ' 218 | 219 | def do_analyzeSig(self, args): 220 | if args == '': 221 | print 'Avaliable Options' 222 | print 'capSoi - Capture Signal Of Intrest' 223 | print 'demodSoi - Demodulate Signal Of Intrest' 224 | print 'basicAnalyzeSoi - Analyze Signal Of Intrest' 225 | print 'downSampleSoi - Down Sample Signal Of Intrest' 226 | print 'clockRecoverySoi - Bit Ordering of Signal of Intrest' 227 | print 'replaySoi - Replay Signal of Intrest' 228 | print '\n' 229 | else: 230 | RedzSigint.run_soi(RedzSigint.convert_analyze_to_enum(args)) 231 | 232 | def do_p25Cap(self, args): 233 | print 'Not Implemented' 234 | 235 | def do_imsiCatch(self, args): 236 | print 'Starting Up ISMI Services' 237 | RedzSigint.start_ismi_catcher() 238 | 239 | def do_freqJam(self, args): 240 | if args == '': 241 | print 'Avaliable Jammers' 242 | print 'cell-atandt' 243 | else: 244 | RedzSigint.run_jammer(RedzSigint.convert_jammer_to_enum(args)) 245 | 246 | def do_iot(self, args): 247 | if args == '': 248 | print 'Avaliable Options' 249 | print 'btle - Capture BTLE Signal' 250 | print 'zigbee - Capture Zigbee Signal' 251 | print 'zwave - Capture Zwave signal' 252 | else: 253 | RedzSigint.run_iot(RedzSigint.convert_iot_to_enum(args)) 254 | 255 | def help_analyzeSig(self): 256 | print 'Not Implemented' 257 | 258 | def help_p25Cap(self): 259 | print 'Not Implemented' 260 | 261 | def help_imsiCatch(self): 262 | print 'Not Implemented' 263 | 264 | def help_iot(self): 265 | print 'Not Implemented' 266 | 267 | def help_freqJam(self): 268 | print 'Not Implemented' 269 | 270 | def do_exit(self, line): 271 | print '[*] Gracefully Shutting Down' 272 | RedzSigint.shutdown_ismi_catcher() 273 | RedzSigint.shutdown_jammers() 274 | return True 275 | 276 | 277 | if __name__ == "__main__": 278 | RedzSigint.show_banner() 279 | RedzSigint.show_options() 280 | CommandLineHandler().cmdloop() 281 | 282 | --------------------------------------------------------------------------------